/* =====================================================
   HOTEL VIENNA MARE — main.css v3
   Design: Wecomm Agency | wecomm.agency
   Ref: Vienna Mare (hotelviennamare.it)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --cream:        #f5f3f0;
  --cream2:       #f0ede8;
  --cream3:       #e8e4de;
  --white:        #ffffff;
  --ink:          #0b3d62;
  --ink2:         #0e4a78;
  --ink3:         #4a4038;
  --ink-light:    #8a7e74;
  --ink-lighter:  #b8aea5;
  --border:       rgba(11,61,98,.10);
  --border2:      rgba(11,61,98,.06);
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', system-ui, sans-serif;
  /* Alias usati in extra.css (compatibilità) */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --ink-light:    rgba(11,61,98,.55);
  --ink-lighter:  rgba(11,61,98,.35);
  --nav-h:        80px;
  --section-pad:  6rem 3.5rem;
  --section-pad-s:4rem 3.5rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; font-weight: 400; }
p, li, td, .vm-eyebrow + p, .vm-cam-card__txt p, .vm-srv p, .vm-fb-text p, .vm-lfb-text p { font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--sans); }

/* ── NAV ── */
.vm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.8rem; height: var(--nav-h);
  background: rgba(245,243,240,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 14px rgba(11,61,98,.06);
  transition: background .35s, box-shadow .35s, border-color .35s, color .35s;
}
/* SOLO homepage in cima (hero scuro): trasparente con testo bianco */
.vm-nav.on-dark:not(.scrolled) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.vm-nav.on-dark:not(.scrolled) .vm-logo-main,
.vm-nav.on-dark:not(.scrolled) .vm-logo-sub,
.vm-nav.on-dark:not(.scrolled) .vm-nav-link,
.vm-nav.on-dark:not(.scrolled) .vm-burger { color: #fff; }
.vm-nav.scrolled {
  background: rgba(245,243,240,.99);
  box-shadow: 0 1px 20px rgba(11,61,98,.10);
  border-color: var(--border);
}

/* Logo */
.vm-logo { display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }
.vm-logo-main {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 300;
  color: var(--ink); letter-spacing: .03em; line-height: 1;
  transition: color .3s;
}
.vm-logo-main .sep { color: var(--ink-lighter); }
.vm-logo-sub {
  font-size: .55rem; font-weight: 300; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-light); line-height: 1;
  transition: color .3s;
}
.vm-nav.on-dark .vm-logo-main { color: #fff; }
.vm-nav.on-dark .vm-logo-main .sep { color: rgba(255,255,255,.3); }
.vm-nav.on-dark .vm-logo-sub { color: rgba(255,255,255,.45); }

/* Nav links */
.vm-nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; flex: 1; justify-content: center;
}
.vm-nav-item { position: relative; }
.vm-nav-item > a {
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.1rem; height: var(--nav-h);
  text-decoration: none; transition: opacity .2s;
}
.vm-nav-item > a:hover { opacity: .6; }
.vm-nav-item + .vm-nav-item > a::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); height: 18px; width: 1px;
  background: var(--border); pointer-events: none;
}
.vm-nav.on-dark .vm-nav-item + .vm-nav-item > a::before { background: rgba(255,255,255,.15); }

.vm-nav-label { display: flex; flex-direction: column; align-items: center; text-align: center; }
.vm-nav-label-top {
  font-size: .5rem; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-light); line-height: 1.3;
  transition: color .3s;
}
.vm-nav-label-main {
  font-family: var(--serif); font-size: .9rem; font-weight: 300;
  color: var(--ink); letter-spacing: .03em; line-height: 1.2; white-space: nowrap;
  transition: color .3s;
}
.vm-nav.on-dark .vm-nav-label-top  { color: rgba(255,255,255,.45); }
.vm-nav.on-dark .vm-nav-label-main { color: rgba(255,255,255,.9); }

/* Dropdown */
.vm-nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(245,243,240,.98); backdrop-filter: blur(14px);
  border-top: 2px solid var(--ink);
  min-width: 210px; padding: .7rem 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 200; box-shadow: 0 8px 28px rgba(11,61,98,.1);
}
.vm-nav-has-dropdown:hover .vm-nav-dropdown,
.vm-nav-has-dropdown:focus-within .vm-nav-dropdown,
.vm-nav-has-dropdown.open .vm-nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.vm-nav-dropdown li a {
  display: block; padding: .55rem 1.4rem;
  font-size: .65rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink3);
  transition: color .15s, padding-left .15s;
}
.vm-nav-dropdown li a:hover { color: var(--ink); padding-left: 1.8rem; }

/* Nav right */
.vm-nav-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }

/* Language switcher */
.vm-lang { position: relative; }
.vm-lang-toggle {
  display: flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer; padding: .2rem;
}
.vm-lang-current {
  font-size: .65rem; font-weight: 400; letter-spacing: .12em;
  color: var(--ink3); transition: color .3s;
}
.vm-lang-toggle svg { color: var(--ink-light); transition: color .3s; }
.vm-nav.on-dark .vm-lang-current { color: rgba(255,255,255,.75); }
.vm-nav.on-dark .vm-lang-toggle svg { color: rgba(255,255,255,.4); }
.vm-lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: rgba(245,243,240,.98); backdrop-filter: blur(12px);
  border-top: 2px solid var(--ink);
  min-width: 64px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
}
.vm-lang.open .vm-lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.vm-lang-dropdown a {
  display: block; padding: .4rem 1rem; text-align: center;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-light); transition: color .15s;
}
.vm-lang-dropdown a.active, .vm-lang-dropdown a:hover { color: var(--ink); font-weight: 500; }

/* Prenota CTA */
.vm-prenota {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 400; letter-spacing: .12em;
  color: var(--ink); border: 1px solid rgba(11,61,98,.3);
  border-radius: 100px; padding: .5rem 1.4rem .5rem 1.6rem;
  transition: all .25s; white-space: nowrap;
}
.vm-prenota:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.vm-prenota svg { transition: transform .2s; }
.vm-prenota:hover svg { transform: translateX(2px); }
.vm-nav.on-dark .vm-prenota { color: #fff; border-color: rgba(255,255,255,.4); }
.vm-nav.on-dark .vm-prenota:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Hamburger */
.vm-hamburger { display: flex; flex-direction: column; gap: 4px; padding: .3rem; }
.vm-hamburger span { display: block; width: 20px; height: 1px; background: var(--ink); transition: background .3s; }
.vm-nav.on-dark .vm-hamburger span { background: #fff; }

/* ── HERO ── */
.vm-hero {
  position: relative; height: 100vh; min-height: 620px;
  overflow: hidden; display: flex; align-items: flex-start;
  background: var(--ink);
}
.vm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.vm-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.vm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,26,22,.06) 0%, rgba(30,26,22,.25) 100%);
  z-index: 1;
}
.vm-hero-logo-wrap {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 3.5rem) 3.5rem 0;
}
.vm-hero-logo-big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1; color: var(--ink);
}
.vm-hero-logo-big .fade { color: rgba(11,61,98,.18); }
.vm-hero-logo-city {
  font-size: .62rem; font-weight: 300; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(11,61,98,.45); margin-top: .6rem;
}
/* hero on dark bg: testo bianco */
.vm-hero.dark-bg .vm-hero-logo-big { color: #fff; }
.vm-hero.dark-bg .vm-hero-logo-big .fade { color: rgba(255,255,255,.2); }
.vm-hero.dark-bg .vm-hero-logo-city { color: rgba(255,255,255,.4); }

.vm-hero-audio {
  position: absolute; bottom: 2.5rem; left: 3.5rem; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  font-size: .63rem; font-weight: 400; letter-spacing: .1em;
  color: var(--ink); background: rgba(11,61,98,.07);
  border-radius: 100px; padding: .5rem 1.2rem;
}
.vm-hero.dark-bg .vm-hero-audio { color: rgba(255,255,255,.7); background: rgba(0,0,0,.35); }

/* Scroll-to-top */
.vm-scroll-top {
  position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,61,98,.72); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.vm-scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ── BOOKING BAR ── */
.vm-booking {
  background: var(--cream2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); position: relative; z-index: 10;
}
.vm-booking-inner { display: flex; align-items: stretch; }
.vm-bk-field {
  flex: 1; padding: 1rem 1.4rem;
  border-right: 1px solid var(--border); cursor: pointer; transition: background .2s;
}
.vm-bk-field:hover { background: rgba(11,61,98,.03); }
.vm-bk-field:last-of-type { border-right: none; }
.vm-bk-label { font-size: .52rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: .25rem; }
.vm-bk-val { font-size: .8rem; font-weight: 300; color: var(--ink); }
.vm-bk-val input { background: none; border: none; outline: none; width: 100%; font-family: var(--sans); font-size: .8rem; font-weight: 300; color: var(--ink); cursor: pointer; }
.vm-bk-btn {
  font-size: .63rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); background: var(--ink); padding: 0 2.2rem;
  white-space: nowrap; border: none; transition: background .2s; cursor: pointer;
}
.vm-bk-btn:hover { background: var(--ink2); }

/* ── FULLBLEED DARK (testo sovrapposto) ── */
.vm-fb {
  position: relative; width: 100%; overflow: hidden;
  display: flex; align-items: flex-start;
}
.vm-fb-full { height: 100vh; min-height: 620px; }
.vm-fb-tall  { min-height: 70vh; }
.vm-fb-med   { min-height: 55vh; }
.vm-fb-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.vm-fb:hover .vm-fb-bg { transform: scale(1.02); }
.vm-fb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.52) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,0) 100%);
}
.vm-fb-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%);
}
.vm-fb-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 3.5rem 4rem;
  max-width: 520px; display: flex; flex-direction: column;
}
.vm-fb-label {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: rgba(245,243,240,.7); line-height: 1.1; margin-bottom: .1rem;
}
.vm-fb-sublabel {
  font-size: .6rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,243,240,.5); padding-bottom: 1rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(245,243,240,.18);
}
.vm-fb-h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.08; color: #fff; margin-bottom: 1.4rem;
}
.vm-fb-body {
  font-size: .8rem; font-weight: 300; line-height: 1.9;
  color: rgba(245,243,240,.72); margin-bottom: 2rem;
}

/* ── LIGHT FULLBLEED ── */
.vm-lfb {
  position: relative; min-height: 92vh; width: 100%; overflow: hidden; display: flex; align-items: flex-start;
}
.vm-lfb-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.vm-lfb:hover .vm-lfb-bg { transform: scale(1.015); }
.vm-lfb-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 3.5rem) 3.5rem 4rem;
  max-width: 480px;
}
.vm-lfb-h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.4rem;
}
.vm-lfb-body { font-size: .8rem; font-weight: 300; line-height: 1.9; color: var(--ink3); margin-bottom: 2rem; }

/* ── SPLIT ── */
.vm-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.vm-split.rev { direction: rtl; }
.vm-split.rev > * { direction: ltr; }
.vm-split-img { position: relative; overflow: hidden; min-height: 450px; background: var(--cream3); }
.vm-split-img-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.vm-split:hover .vm-split-img-bg { transform: scale(1.03); }
.vm-split-txt { background: var(--white); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.vm-split-txt.cream { background: var(--cream); }
.vm-split-h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.6rem;
}
.vm-split-body { font-size: .82rem; font-weight: 300; line-height: 1.9; color: var(--ink3); margin-bottom: 2.2rem; }
.vm-split-links { display: flex; flex-direction: column; gap: 1rem; }
.vm-split-link {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 400; letter-spacing: .07em;
  color: var(--ink); border: 1px solid rgba(11,61,98,.2);
  border-radius: 100px; padding: .6rem 1.4rem;
  transition: all .22s; width: fit-content;
}
.vm-split-link:hover, .vm-split-link.feat { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.vm-split-link.feat:hover { background: var(--ink2); }

/* ── PILLS / CTA ── */
.btn-pill {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 400; letter-spacing: .1em;
  border-radius: 100px; padding: .65rem 1.5rem; transition: all .25s; white-space: nowrap;
}
.btn-w-dark  { color: #fff; border: 1px solid rgba(255,255,255,.45); background: transparent; }
.btn-w-dark:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-d-out   { color: var(--ink); border: 1px solid rgba(11,61,98,.22); background: transparent; }
.btn-d-out:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-d-fill  { color: var(--cream); background: var(--ink); border: 1px solid var(--ink); }
.btn-d-fill:hover { background: var(--ink2); }
.btn-soft    { color: var(--ink); background: rgba(11,61,98,.07); border: 1px solid transparent; }
.btn-soft:hover { background: var(--ink); color: var(--cream); }

/* ── SECTION WRAPPER ── */
.vm-s   { padding: var(--section-pad); }
.vm-s-s { padding: var(--section-pad-s); }
.bg-w   { background: var(--white); }
.bg-c   { background: var(--cream); }
.bg-c2  { background: var(--cream2); }
.bg-ink { background: var(--ink); }

.vm-eyebrow {
  font-size: .58rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-light); display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem;
}
.vm-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--ink-lighter); }
.vm-eyebrow.light { color: rgba(245,243,240,.4); }
.vm-eyebrow.light::before { background: rgba(245,243,240,.2); }

.vm-sh { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.vm-sh-l { max-width: 520px; }
.vm-h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
}
.vm-h2.light { color: rgba(245,243,240,.85); }

/* ── CAMERE GRID ── */
.vm-cam-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border2);
}
.vm-cam { background: var(--white); overflow: hidden; position: relative; transition: box-shadow .25s; }
.vm-cam:hover { z-index: 2; box-shadow: 0 6px 32px rgba(11,61,98,.1); }
.vm-cam.span2 { grid-column: span 2; }
.vm-cam-img { position: relative; overflow: hidden; }
.vm-cam-img-inner {
  width: 100%; padding-top: 60%;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.vm-cam.span2 .vm-cam-img-inner { padding-top: 40%; }
.vm-cam:hover .vm-cam-img-inner { transform: scale(1.04); }
.vm-cam-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: .8rem; color: var(--ink-lighter);
}
.vm-cam-body { padding: 1.8rem 2rem 2.2rem; border-top: 1px solid var(--border2); }
.vm-cam-nome { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--ink); margin-bottom: .35rem; }
.vm-cam-desc { font-size: .76rem; font-weight: 300; line-height: 1.72; color: var(--ink3); margin-bottom: 1rem; }
.vm-cam-foot { display: flex; align-items: baseline; justify-content: space-between; }
.vm-cam-price { font-size: .6rem; font-weight: 300; color: var(--ink-light); }
.vm-cam-price strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-right: .1rem; }

/* ── OFFERTE ── */
.vm-off-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.vm-off-card {
  background: var(--white); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; transition: background .2s; cursor: pointer;
}
.vm-off-card:hover { background: #faf7f4; }
.vm-off-card.hi { background: #f8f4ef; }
.vm-off-date { font-size: .58rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 1.2rem; }
.vm-off-nome { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: .8rem; }
.vm-off-desc { font-size: .76rem; font-weight: 300; line-height: 1.75; color: var(--ink3); flex: 1; margin-bottom: 1.8rem; }
.vm-off-price { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--ink); line-height: 1; }
.vm-off-price-u { font-size: .6rem; font-weight: 300; letter-spacing: .1em; color: var(--ink-light); display: block; margin-top: .25rem; }
.vm-off-cta { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--border2); }

/* ── SERVIZI NUMERATI ── */
.vm-srv-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.vm-srv {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.vm-srv:hover { background: rgba(11,61,98,.02); }
.vm-srv-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: rgba(11,61,98,.07); display: block; margin-bottom: .8rem; line-height: 1; }
.vm-srv-nome { font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink3); margin-bottom: .5rem; }
.vm-srv-desc { font-size: .72rem; font-weight: 300; line-height: 1.65; color: var(--ink-light); }

/* ── GALLERY STRIP ── */
.vm-gall-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px; gap: 3px;
}
.vm-gall-item { overflow: hidden; position: relative; cursor: pointer; background: var(--cream2); }
.vm-gall-item:first-child { grid-row: span 2; }
.vm-gall-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.vm-gall-item:hover .vm-gall-bg { transform: scale(1.05); }
.vm-gall-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .35s; }
.vm-gall-item:hover .vm-gall-overlay { background: rgba(0,0,0,.28); }
.vm-gall-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: .78rem; color: var(--ink-lighter); z-index: 1; }

/* ── SINGLE CAMERA STICKY ── */
.vm-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.vm-cam-single-gall { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.vm-cam-sg-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; position: relative; background: var(--cream2); }
.vm-cam-sg-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.vm-cam-sg-item:hover .vm-cam-sg-bg { transform: scale(1.06); }

/* ── FOOTER ── */
.vm-footer { background: var(--ink); padding: 5rem 3.5rem 2.5rem; }
.vm-foot-grid {
  display: grid; grid-template-columns: 180px 1fr 1fr; gap: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(245,243,240,.08); align-items: start;
}
.vm-foot-logo { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,240,.65); margin-bottom: .3rem; }
.vm-foot-city { font-size: .55rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,243,240,.28); margin-bottom: 2rem; }
.vm-foot-social { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.vm-foot-social a { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,243,240,.28); transition: color .2s; }
.vm-foot-social a:hover { color: rgba(245,243,240,.7); }
.vm-foot-col h4 { font-size: .56rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: rgba(245,243,240,.28); margin-bottom: 1.2rem; }
.vm-foot-col ul { display: flex; flex-direction: column; gap: .6rem; }
.vm-foot-col a { font-size: .76rem; font-weight: 300; color: rgba(245,243,240,.32); transition: color .2s; }
.vm-foot-col a:hover { color: rgba(245,243,240,.72); }
.vm-foot-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.vm-foot-copy { font-size: .62rem; font-weight: 300; color: rgba(245,243,240,.2); }
.vm-foot-credit { font-size: .62rem; font-weight: 300; color: rgba(245,243,240,.18); }
.vm-foot-credit a { color: rgba(245,243,240,.32); transition: color .2s; }
.vm-foot-credit a:hover { color: rgba(245,243,240,.62); }

/* ── NEWSLETTER STRIP ── */
.vm-nl-strip {
  background: var(--cream2); border-top: 1px solid var(--border);
  padding: 3rem 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.vm-nl-form { display: flex; gap: 0; max-width: 480px; }
.vm-nl-form input[type="email"] {
  flex: 1; border: 1px solid var(--border); border-right: none;
  font-family: var(--sans); font-size: .8rem; font-weight: 300;
  color: var(--ink); padding: .78rem 1rem; outline: none;
  background: var(--white); transition: border-color .2s;
}
.vm-nl-form input:focus { border-color: var(--ink); }
.vm-nl-form button {
  font-size: .6rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); background: var(--ink); border: 1px solid var(--ink);
  padding: .78rem 1.4rem; white-space: nowrap; cursor: pointer; transition: background .2s;
}
.vm-nl-form button:hover { background: var(--ink2); }

/* ── MOBILE MENU ── */
.vm-mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(245,243,240,.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 5rem 3rem 4rem; transform: translateX(100%);
  transition: transform .42s cubic-bezier(.77,0,.175,1); overflow-y: auto;
}
.vm-mobile-menu.open { transform: translateX(0); }
.vm-mobile-links { display: flex; flex-direction: column; gap: 1.2rem; width: 100%; }
.vm-mobile-links a {
  font-family: var(--serif); font-size: clamp(1.4rem,4vw,2rem); font-weight: 300;
  color: var(--ink); line-height: 1.2; transition: color .2s;
}
.vm-mobile-links a:hover { color: var(--ink-light); }
.vm-mobile-close { position: absolute; top: 1.8rem; right: 2.5rem; background: none; border: none; cursor: pointer; color: var(--ink); padding: .4rem; }

/* ── PAGE INNER HEADER ── */
.vm-page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 3.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.vm-page-h1 {
  font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); font-weight: 300;
  color: var(--ink); line-height: 1.05; margin-top: .8rem;
}

/* ── CONTATTI ── */
.vm-cont-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.vm-cont-txt { padding: 5rem 4rem; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.vm-cont-row { display: flex; flex-direction: column; gap: .2rem; margin-bottom: 1.5rem; }
.vm-cont-label { font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-light); }
.vm-cont-val { font-size: .82rem; font-weight: 300; color: var(--ink3); line-height: 1.5; }
.vm-cont-map { min-height: 480px; background: var(--cream2); }
.vm-cont-map iframe { width: 100%; height: 100%; min-height: 480px; border: none; }

/* ── BREADCRUMB ── */
.vm-bread {
  display: flex; align-items: center; gap: .5rem;
  font-size: .6rem; font-weight: 300; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-light); margin-bottom: 1.5rem;
}
.vm-bread a { transition: color .2s; }
.vm-bread a:hover { color: var(--ink); }
.vm-bread .sep { color: var(--ink-lighter); }

/* ── PAGINATION ── */
.nav-links { display: flex; justify-content: center; gap: .6rem; padding: 3rem 0; list-style: none; }
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(11,61,98,.15);
  color: var(--ink3); transition: all .2s; text-decoration: none;
}
.nav-links .page-numbers.current, .nav-links .page-numbers:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav-links .page-numbers.dots { border: none; }

/* ── SELECTION / SCROLLBAR ── */
::selection { background: rgba(11,61,98,.1); color: var(--ink); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(11,61,98,.2); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .vm-nav-label-main { font-size: .8rem; }
  .vm-nav-item > a { padding: 0 .8rem; }
}
@media (max-width: 1024px) {
  #vm-nav-links { display: none; }
  .vm-split { grid-template-columns: 1fr; }
  .vm-split-img { min-height: 300px; }
  .vm-gall-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .vm-gall-item:first-child { grid-row: span 1; }
  .vm-off-grid { grid-template-columns: 1fr; }
  .vm-foot-grid { grid-template-columns: 1fr 1fr; }
  .vm-cam-grid { grid-template-columns: 1fr; }
  .vm-cam.span2 { grid-column: span 1; }
  .vm-srv-grid { grid-template-columns: 1fr 1fr; }
  .vm-cont-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; --section-pad: 4rem 1.5rem; --section-pad-s: 3rem 1.5rem; }
  .vm-nav { padding: 0 1.5rem; }
  .vm-fb-content { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; max-width: 100%; }
  .vm-lfb-content { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .vm-hero-logo-wrap { padding: calc(var(--nav-h) + 2rem) 1.5rem 0; }
  .vm-booking-inner { flex-direction: column; }
  .vm-bk-field { border-right: none; border-bottom: 1px solid var(--border); }
  .vm-bk-btn { padding: 1rem; width: 100%; }
  .vm-gall-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .vm-gall-item, .vm-gall-item:first-child { grid-row: span 1; min-height: 220px; }
  .vm-foot-grid { grid-template-columns: 1fr; }
  .vm-nl-strip { grid-template-columns: 1fr; }
  .vm-nl-form { flex-direction: column; }
  .vm-nl-form input[type="email"] { border-right: 1px solid var(--border); border-bottom: none; }
  .vm-split-txt { padding: 3rem 2rem; }
  .vm-page-hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  .vm-cam-single-gall { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .vm-srv-grid { grid-template-columns: 1fr; }
  .vm-cam-single-gall { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
@media print { .vm-nav, .vm-booking, .vm-scroll-top, .vm-mobile-menu { display: none !important; } }
