:root {
  --blue: #a9bfe0;
  --blue-deep: #6d84ad;
  --mauve: #c69ba8;
  --mauve-deep: #a06e7f;
  --green: #4f8a6d;
  --ink: #4a4a55;
  --muted: #6c6c78;
  --bg: #f7f5f2;
  --bg-warm: #f3efe9;
  --card: #ffffff;
  --line: #eae6e0;
  --shadow: 0 20px 45px -25px rgba(109, 132, 173, 0.5);
  --shadow-soft: 0 12px 28px -18px rgba(59, 59, 69, 0.35);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(169, 191, 224, 0.22), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(198, 155, 168, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .5s ease;
}
h1, h2, h3, .brand { font-family: 'Quicksand', sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, 92%); margin: 0 auto; }
section { padding: 92px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mauve-deep);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 10px 0 14px;
  color: #3b3b45;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section-head .rich-text { color: var(--muted); font-size: 1.02rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 200;
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ */
.faq { background: linear-gradient(180deg, transparent, rgba(255,255,255,.55)); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: rgba(109, 132, 173, .35);
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #3b3b45;
  position: relative;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(109, 132, 173, .12);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform .3s var(--ease), background .3s;
}
.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: rgba(79, 138, 109, .16);
  color: var(--green);
}
.faq-item summary:hover { color: var(--blue-deep); }
.faq-item p {
  margin: 0 0 18px;
  padding-top: 2px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  animation: slideSoft .35s var(--ease);
}

::selection {
  background: rgba(109, 132, 173, .28);
  color: #2f3440;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease),
    filter .85s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-right.in { opacity: 1; transform: none; }

.rooms-grid > .room-card,
.gallery-grid > figure,
.discount-tiers > .discount-tier,
.feature-list > li,
.info-strip > .box {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .6s var(--ease),
    transform .6s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s;
}
.reveal.in .stagger > .reveal-item,
.reveal.in .rooms-grid > .room-card,
.reveal.in .gallery-grid > figure,
.reveal.in .discount-tiers > .discount-tier,
.reveal.in .feature-list > li,
.reveal.in .info-strip > .box {
  opacity: 1;
  transform: none;
}
.reveal.in .rooms-grid > .room-card:nth-child(1),
.reveal.in .gallery-grid > figure:nth-child(1),
.reveal.in .discount-tiers > .discount-tier:nth-child(1),
.reveal.in .feature-list > li:nth-child(1),
.reveal.in .info-strip > .box:nth-child(1) { transition-delay: .05s; }
.reveal.in .rooms-grid > .room-card:nth-child(2),
.reveal.in .gallery-grid > figure:nth-child(2),
.reveal.in .discount-tiers > .discount-tier:nth-child(2),
.reveal.in .feature-list > li:nth-child(2),
.reveal.in .info-strip > .box:nth-child(2) { transition-delay: .12s; }
.reveal.in .rooms-grid > .room-card:nth-child(3),
.reveal.in .gallery-grid > figure:nth-child(3),
.reveal.in .discount-tiers > .discount-tier:nth-child(3),
.reveal.in .feature-list > li:nth-child(3),
.reveal.in .info-strip > .box:nth-child(3) { transition-delay: .19s; }
.reveal.in .rooms-grid > .room-card:nth-child(4),
.reveal.in .gallery-grid > figure:nth-child(4),
.reveal.in .discount-tiers > .discount-tier:nth-child(4),
.reveal.in .feature-list > li:nth-child(4),
.reveal.in .info-strip > .box:nth-child(4) { transition-delay: .26s; }
.reveal.in .rooms-grid > .room-card:nth-child(5),
.reveal.in .gallery-grid > figure:nth-child(5),
.reveal.in .feature-list > li:nth-child(5),
.reveal.in .info-strip > .box:nth-child(5) { transition-delay: .33s; }
.reveal.in .rooms-grid > .room-card:nth-child(6),
.reveal.in .gallery-grid > figure:nth-child(6),
.reveal.in .feature-list > li:nth-child(6) { transition-delay: .4s; }
.reveal.in .gallery-grid > figure:nth-child(7) { transition-delay: .45s; }
.reveal.in .gallery-grid > figure:nth-child(8) { transition-delay: .5s; }
.reveal.in .gallery-grid > figure:nth-child(9) { transition-delay: .55s; }
.reveal.in .gallery-grid > figure:nth-child(10) { transition-delay: .6s; }
.reveal.in .gallery-grid > figure:nth-child(n+11) { transition-delay: .65s; }
.reveal.in .feature-list > li:nth-child(7) { transition-delay: .47s; }

.eyebrow {
  position: relative;
  display: inline-block;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 0;
  max-width: 100%;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--mauve-deep));
  transition: width .7s var(--ease) .2s;
}
.section-head .eyebrow::after,
.about-text .eyebrow::after { margin-left: auto; margin-right: auto; }
.about-text .eyebrow::after { margin-left: 0; margin-right: auto; }
.reveal.in .eyebrow::after { width: 100%; }

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 242, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
header.scrolled {
  background: rgba(247, 245, 242, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(59, 59, 69, 0.45);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
@media (min-width: 861px) {
  .nav { height: 88px; }
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.18rem;
  color: #3b3b45;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav .brand img {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(180px, 42vw);
  object-fit: contain;
  transition: transform .35s var(--ease);
}
@media (min-width: 861px) {
  .nav .brand img {
    height: 72px;
    max-width: 200px;
  }
}
.nav .brand:hover img { transform: rotate(-4deg) scale(1.04); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--mauve-deep));
  transition: right .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--blue-deep); }
.nav-links a:not(.btn):hover::after { right: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s, filter .25s, background .25s, color .25s;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-deep), var(--mauve-deep));
  background-size: 160% 160%;
  box-shadow: 0 14px 26px -12px rgba(109, 132, 173, .75);
  animation: btnGlow 5s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-primary:hover {
  transform: translateY(-3px);
  filter: saturate(1.1);
  box-shadow: 0 20px 34px -12px rgba(160, 110, 127, .55);
}
.btn-ghost {
  color: var(--blue-deep);
  background: rgba(169, 191, 224, .16);
  border: 1px solid rgba(109, 132, 173, .3);
}
.btn-ghost:hover { background: rgba(169, 191, 224, .3); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 42px;
  height: 42px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .35s var(--ease), opacity .25s, background .25s;
  border-radius: 2px;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(45, 55, 80, .68) 0%, rgba(90, 70, 85, .55) 55%, rgba(45, 55, 80, .35) 100%),
    url('../../img/site/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
.hero-inner {
  position: relative;
  padding: 80px 0 100px;
  max-width: 740px;
}
.hero-brand {
  margin: 0 0 20px;
  animation: fadeUp .8s var(--ease) both;
}
.hero-brand img {
  display: block;
  width: min(320px, 78vw);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, .35));
}
@media (min-width: 861px) {
  .hero-brand img {
    width: min(420px, 88vw);
  }
}
.hero .rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .32);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  animation: fadeUp .8s .06s var(--ease) both;
}
.rating-pill b {
  background: #fff;
  color: var(--blue-deep);
  border-radius: 7px;
  padding: 2px 8px;
  font-family: 'Quicksand', sans-serif;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.06;
  margin: 22px 0 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .28);
  letter-spacing: -0.03em;
  animation: fadeUp .9s .12s var(--ease) both;
}
.hero p.sub {
  font-size: 1.16rem;
  font-weight: 300;
  max-width: 34ch;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
  animation: fadeUp .9s .2s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp .9s .28s var(--ease) both;
}
.hero .btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .4);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .26); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: -46px;
  position: relative;
  z-index: 5;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat .num {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue-deep);
}
.stat .lbl { font-size: .84rem; color: var(--muted); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}
.about-text h2 { text-align: left; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.rich-text { color: inherit; }
.rich-text p { margin: 0 0 0.85em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text img { max-width: 100%; height: auto; border-radius: 10px; margin: 0.5em 0; }
.rich-text ul, .rich-text ol { margin: 0.5em 0 0.85em; padding-left: 1.25em; }
.about-text .rich-text { color: var(--muted); margin-bottom: 16px; }
.hero .sub.rich-text { color: inherit; }
.discount-band .rich-text { color: var(--muted); margin: 0; max-width: 42ch; }
.contact-info .rich-text { color: var(--muted); margin-bottom: 26px; }
footer.site .rich-text { font-size: .92rem; color: #b6b6c0; max-width: 36ch; }
footer.site .rich-text p { color: inherit; }
.about-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .8s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 14px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .96rem;
}
.feature-list .ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(79, 138, 109, .14);
  color: var(--green);
}

/* ROOMS */
.rooms {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .7) 12%, rgba(255, 255, 255, .85) 88%, transparent);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 980px) {
  .rooms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .rooms-grid { grid-template-columns: 1fr; }
}
.room-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .35s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.room-card-open {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  min-height: 0;
}
.room-card-open:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.room-card .room-foot {
  padding: 16px 24px 22px;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(109, 132, 173, .35);
}
.room-img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.room-card .room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease);
}
.room-img-wrap:hover .room-img { transform: scale(1.07); }
.room-photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 30, 40, .62);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transform: translateY(6px);
  opacity: .85;
  transition: transform .35s var(--ease), opacity .35s, background .3s;
}
.room-img-wrap:hover .room-photo-count {
  transform: none;
  opacity: 1;
  background: rgba(30, 30, 40, .78);
}
.room-img-wrap::after {
  content: "Dettagli";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(30, 30, 40, .36);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.room-img-wrap:hover::after {
  opacity: 1;
  transform: none;
}
.room-amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 12px 0 4px;
}
.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 100%;
}
.room-amenity svg {
  flex: 0 0 auto;
  opacity: .9;
}
.room-amenity-label {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 7.5rem;
}
.room-card .room-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag.priv { background: rgba(160, 110, 127, .14); color: var(--mauve-deep); }
.tag.shared { background: rgba(109, 132, 173, .14); color: var(--blue-deep); }
.room-card h3 {
  font-size: 1.2rem;
  color: #3b3b45;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.room-card p { font-size: .92rem; color: var(--muted); }
.room-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(234, 230, 224, .9);
}
.room-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.08rem;
  min-width: 0;
  flex: 1 1 auto;
}
.room-price small {
  display: block;
  font-weight: 500;
  font-size: .74rem;
  color: var(--muted);
}
.btn.btn-book {
  padding: 9px 16px;
  font-size: .9rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* DISCOUNT PROMO */
.discount-promo { padding: 0 0 72px; }
.discount-band {
  background:
    linear-gradient(125deg, rgba(109, 132, 173, .12), rgba(160, 110, 127, .1)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 28px;
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.discount-band::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -70px;
  background: radial-gradient(circle, rgba(169, 191, 224, .28), transparent 70%);
  pointer-events: none;
}
.discount-band-slim {
  padding: 18px 24px;
}
.discount-band-copy {
  position: relative;
  min-width: 0;
}
.discount-band .eyebrow { display: inline-block; margin-bottom: 4px; }
.discount-band h2 {
  text-align: left;
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.25;
}
.discount-band p,
.discount-band .rich-text {
  color: var(--muted);
  margin: 0;
  max-width: 54ch;
  font-size: .95rem;
  line-height: 1.45;
}
.discount-band-cta {
  position: relative;
  flex: 0 0 auto;
  justify-self: end;
}
.discount-band-cta .btn {
  white-space: nowrap;
}
.discount-tiers {
  display: none;
}
.discount-tier { display: none; }
.discount-tier:hover { transform: none; }
.discount-tier .pct,
.discount-tier .lbl { display: none; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 156px;
  gap: 12px;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 0;
  background: #e6e2db;
}
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 30, 40, .28));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid .big { grid-column: span 2; grid-row: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid figure.gallery-more[hidden] { display: none !important; }
.gallery-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  text-align: center;
}
.gallery-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.2;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid rgba(109, 132, 173, .32);
  color: var(--blue-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(169, 191, 224, .18));
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s, background .25s, border-color .25s;
}
.gallery-load-more:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 132, 173, .5);
  background: rgba(169, 191, 224, .28);
  box-shadow: var(--shadow);
}
.gallery-load-more:active {
  transform: translateY(0);
}
.gallery-load-more-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-deep), var(--mauve-deep));
}

/* LOCATION */
.location {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .65) 30%, rgba(255, 255, 255, .5));
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.loc-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.loc-map-toolbar {
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}
.loc-map-tab {
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
}
.loc-map-tab.is-active {
  background: var(--blue-deep);
  color: #fff;
}
.loc-map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/11;
  min-height: 260px;
  background: #e8eef5;
  z-index: 0;
  isolation: isolate;
}
.loc-map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  font: inherit;
}
.loc-map.is-route-clickable,
.loc-map.is-route-clickable .leaflet-container {
  cursor: pointer;
}
.loc-map-panel {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  width: min(220px, calc(100% - 24px));
  padding: 12px 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(40, 48, 70, .18);
  display: none;
}
.loc-map-panel.is-visible { display: block; }
.loc-map-panel-close {
  position: absolute;
  top: 4px;
  right: 6px;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 6px;
}
.loc-map-panel-title {
  margin: 0 18px 4px 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.loc-map-panel-note {
  margin: 0 0 10px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
}
.loc-map-panel-link {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  font-size: .8rem;
  padding: 8px 12px;
}
.loc-map-fallback {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.loc-map-fallback img,
.loc-map img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.loc-map-fallback:hover img { transform: scale(1.03); }
.loc-map .pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.loc-map .pin span {
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.loc-map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}
.loc-map-gmaps {
  font-size: .9rem;
  padding: 10px 16px;
}
.loc-marker {
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
}
.loc-marker-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
  transform: translate(-50%, 0);
  margin-left: 9px;
  pointer-events: none;
}
.loc-marker-pill--dot {
  pointer-events: auto;
  cursor: pointer;
}
.loc-marker-pill--structure { max-width: 7.2rem; }
.loc-marker-pill--route { max-width: 9.5rem; }
.loc-marker-pill--above { margin-top: -28px; }
.loc-marker-dot {
  flex: 0 0 auto;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(40, 48, 70, .28);
  border: 2px solid #fff;
  cursor: pointer;
  pointer-events: auto;
}
.loc-marker-name {
  font-family: Poppins, Segoe UI, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 7px;
  box-shadow: 0 3px 10px rgba(40, 48, 70, .12);
  white-space: normal;
}
.loc-marker-name--compact {
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 3px 6px;
  max-width: 7.2rem;
}
.loc-marker-name--compact em,
.loc-marker-pill--route .loc-marker-name em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: .58rem;
}
.loc-marker-pill--route .loc-marker-name--compact {
  max-width: 9.5rem;
}
.loc-marker.is-dot-only .loc-marker-name { display: none; }
.loc-marker.is-route .loc-marker-dot { background: var(--blue-deep); }
.loc-marker.is-parking.is-free .loc-marker-dot { background: #4f8a6d; }
.loc-marker.is-parking.is-paid .loc-marker-dot { background: #a06b4f; }
.loc-marker.is-structure .loc-marker-dot {
  width: 15px;
  height: 15px;
  background: var(--blue-deep);
}
.loc-popup-note {
  color: #6c6c78;
  font-size: .9em;
  margin: 4px 0 10px;
  line-height: 1.35;
}
.loc-popup-title {
  display: block;
  font-size: .92rem;
  line-height: 1.3;
}
.loc-popup-gmaps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-deep, #5a7199);
  color: #fff !important;
  text-decoration: none !important;
  font-size: .78rem;
  font-weight: 600;
}
.loc-popup-gmaps:hover { filter: brightness(1.06); }
.leaflet-popup.loc-parking-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(40, 48, 70, .18);
}
.leaflet-popup.loc-parking-popup .leaflet-popup-content {
  margin: 12px 14px;
  min-width: 140px;
}
.loc-list {
  list-style: none;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.loc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s var(--ease);
  min-width: 0;
  max-width: 100%;
}
.loc-list li:hover { padding-left: 6px; }
.loc-list li:last-child { border-bottom: none; }
.loc-list .loc-name {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}
.loc-list .dist {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}
.loc-list .ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(169, 191, 224, .18);
  display: grid;
  place-items: center;
  color: var(--blue-deep);
}

/* INFO strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.info-strip .box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), border-color .25s;
}
.info-strip .box:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 132, 173, .35);
}
.info-strip .box h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--mauve-deep);
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-strip .box p { font-size: .96rem; color: var(--ink); }

/* CONTACT / BOOKING */
.contact {
  background:
    linear-gradient(140deg, rgba(238, 242, 247, .95), rgba(246, 238, 241, .95));
  border-top: 1px solid rgba(234, 230, 224, .8);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}
.contact-info h2 { text-align: left; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-line .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(109, 132, 173, .14);
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  flex: 0 0 auto;
}
.contact-line a { text-decoration: none; font-weight: 500; }
.contact-line a:hover { color: var(--blue-deep); }
.contact-line a.contact-wa { color: #128C7E; }
.contact-line a.contact-wa:hover { color: #075E54; }
.contact-line small {
  display: block;
  color: var(--muted);
  font-weight: 400;
}
.pay-howto-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue-deep);
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.pay-howto-trigger:hover {
  color: var(--ink);
}
.pay-howto-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 30, 40, .48);
  backdrop-filter: blur(2px);
}
.pay-howto-modal.open {
  display: flex;
}
.pay-howto-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(109, 132, 173, .22);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .35);
}
.pay-howto-dialog h3 {
  margin: 0 40px 12px 0;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.3;
}
.pay-howto-dialog ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 10px;
}
.pay-howto-dialog li {
  line-height: 1.45;
}
.pay-howto-note {
  margin: 14px 0 0;
  font-size: .9rem;
  color: var(--muted);
}
.pay-howto-note a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pay-howto-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(109, 132, 173, .12);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Room detail modal */
.room-detail-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 85;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 30, 40, .55);
  backdrop-filter: blur(3px);
}
.room-detail-modal.open { display: flex; }
.room-detail-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(90vh, 760px);
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid rgba(109, 132, 173, .22);
  border-radius: 18px;
  box-shadow: 0 28px 60px -20px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
}
.room-detail-layout {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.room-detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(30, 30, 40, .58);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}
.room-detail-close:hover { background: rgba(30, 30, 40, .78); }
.room-detail-gallery {
  position: relative;
  background: #1e1e28;
  aspect-ratio: 16 / 10;
  max-height: 38vh;
  flex: 0 0 auto;
}
.room-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-detail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #3b3b45;
  font-size: 1.55rem;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}
.room-detail-nav:hover { background: #fff; }
.room-detail-nav.prev { left: 14px; }
.room-detail-nav.next { right: 14px; }
.room-detail-count {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 40, .68);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 5px 12px;
  border-radius: 999px;
}
.room-detail-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  background: #fffdf9;
}
.room-detail-body {
  padding: 18px 20px 10px;
  overflow: auto;
  flex: 1;
  min-height: 0;
}
.room-detail-tag {
  margin: 0 0 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.room-detail-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.3;
  color: #3b3b45;
  padding-right: 36px;
}
.room-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.room-detail-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(109, 132, 173, .12);
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
}
.room-detail-desc {
  margin: 0 0 16px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
}
.room-detail-amenities-title {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.room-detail-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-bottom: 8px;
}
.room-detail-amenity {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
  line-height: 1.35;
  color: #4a4a55;
  min-width: 0;
}
.room-detail-amenity > span {
  min-width: 0;
}
.room-detail-amenity svg {
  flex: 0 0 auto;
  color: var(--blue-deep);
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.room-detail-actions {
  display: flex;
  justify-content: stretch;
  gap: 10px;
  padding: 12px 20px 18px;
  border-top: 1px solid rgba(234, 230, 224, .95);
  background: #fffdf9;
  flex-shrink: 0;
}
.room-detail-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 860px) {
  .room-detail-dialog {
    width: min(1020px, 94vw);
    max-height: min(82vh, 640px);
  }
  .room-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    height: min(82vh, 640px);
    align-items: stretch;
  }
  .room-detail-gallery {
    flex: none;
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    max-height: none;
    height: 100%;
    min-height: 0;
    align-self: stretch;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
  }
  .room-detail-panel {
    flex: none;
    width: auto;
    max-height: none;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }
  .room-detail-body {
    padding: 26px 28px 14px;
  }
  .room-detail-body h3 {
    font-size: 1.28rem;
    padding-right: 28px;
  }
  .room-detail-amenities {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 11px 16px;
  }
  .room-detail-actions {
    padding: 14px 28px 22px;
  }
  .room-detail-close {
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .92);
    color: #3b3b45;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
  }
  .room-detail-close:hover { background: #fff; }
}

@media (max-width: 620px) {
  .room-amenity-label { max-width: 5.5rem; }
  .room-detail-modal { padding: 10px; }
  .room-detail-dialog { max-height: min(94vh, 900px); border-radius: 16px; }
  .room-detail-amenities { grid-template-columns: 1fr 1fr; gap: 8px 10px; }
  .room-detail-amenity { font-size: .8rem; }
  .room-detail-body h3 { font-size: 1.05rem; }
}

.pay-howto-close:hover {
  background: rgba(109, 132, 173, .22);
}
form.booking-form,
#bookingForm {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  scroll-margin-top: 96px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: #fbfaf9;
  transition: border-color .25s, box-shadow .25s, background .25s, transform .25s var(--ease);
}
.field input:hover,
.field textarea:hover,
.field select:hover { background: #fff; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(109, 132, 173, .16);
  background: #fff;
  transform: translateY(-1px);
}
.field textarea { resize: vertical; min-height: 110px; }
form .btn-primary,
#bookingForm .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.05rem;
  padding: 14px;
}
.dates-field { margin-bottom: 16px; }
.stay-dates-input,
input.flatpickr-input,
input.form-control.input,
.flatpickr-input.form-control,
.flatpickr-alt-input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: #fbfaf9;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s, transform .25s var(--ease);
}
.stay-dates-input:hover,
.flatpickr-alt-input:hover {
  background: #fff;
}
.stay-dates-input:focus,
.flatpickr-alt-input:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(109, 132, 173, .16);
  background: #fff;
  transform: translateY(-1px);
}
.flatpickr-calendar {
  font-family: 'Poppins', sans-serif;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(59, 59, 69, .14);
  overflow: hidden;
  padding: 8px;
}
.flatpickr-months {
  padding: 4px 2px 8px;
}
.flatpickr-months .flatpickr-month {
  color: var(--ink);
  fill: var(--ink);
  height: 36px;
}
.flatpickr-current-month {
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
.flatpickr-weekdays { background: transparent; }
span.flatpickr-weekday {
  color: var(--muted);
  font-weight: 600;
  font-size: .72rem;
}
.flatpickr-day {
  border-radius: 10px;
  color: var(--ink);
  max-width: 40px;
  height: 38px;
  line-height: 38px;
  margin-top: 2px;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(109, 132, 173, .14);
  border-color: transparent;
}
.flatpickr-day.today {
  border-color: var(--blue-deep);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  box-shadow: none;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange {
  background: rgba(109, 132, 173, .16);
  border-color: transparent;
  box-shadow: none;
  color: var(--ink);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #c5c1b8;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--blue-deep);
}
@media (min-width: 720px) {
  .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) {
    box-shadow: -1px 0 0 var(--line);
  }
}
.form-steps-hint {
  margin: 0 0 18px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(109, 132, 173, .1);
  color: var(--blue-deep);
  font-size: .86rem;
  line-height: 1.45;
}
.form-row-guests {
  grid-template-columns: minmax(140px, 220px);
}
.field-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field-hint {
  margin: 0 0 10px;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--muted);
}
.promo-disclosure {
  margin: 0 0 18px;
  border: 0;
}
.promo-disclosure-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  color: var(--blue-deep);
  font-size: .9rem;
  font-weight: 600;
  user-select: none;
}
.promo-disclosure-toggle::-webkit-details-marker { display: none; }
.promo-disclosure-toggle::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
  margin-top: -0.15em;
}
.promo-disclosure[open] .promo-disclosure-toggle::after {
  transform: rotate(-135deg);
  margin-top: 0.15em;
}
.promo-disclosure-toggle:hover,
.promo-disclosure-toggle:focus-visible {
  color: var(--blue);
  outline: none;
}
.promo-disclosure-body {
  margin-top: 10px;
}
.promo-disclosure-body .field-hint {
  margin: 8px 0 0;
}
.room-field {
  position: relative;
  margin-bottom: 18px;
}
.room-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}
.form-note a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }
.privacy-field { margin: 4px 0 10px; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  cursor: pointer;
}
.privacy-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue-deep);
}
.privacy-check a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a { color: #cfcfd6; text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a:hover { color: #fff; }

/* Pagina legale / privacy — sempre visibile (senza site.js is-ready) */
body.legal-body {
  opacity: 1 !important;
  color: #2f2f38;
  background: #f7f5f2;
}
.legal-page { padding: 48px 0 72px; }
.legal-wrap { max-width: 760px; }
.legal-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #2a2a32;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.legal-lead {
  font-size: 1.05rem;
  color: #3b3b45;
  margin: 12px 0 8px;
  line-height: 1.7;
}
.legal-meta {
  font-size: .9rem;
  color: #5a5a66;
  margin-bottom: 28px;
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 36px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line, #eae6e0);
  border-radius: 14px;
}
.legal-toc a {
  font-size: .84rem;
  color: #3d5a80;
  text-decoration: none;
  padding: 6px 10px;
  background: #eef3f9;
  border-radius: 8px;
  font-weight: 500;
}
.legal-toc a:hover { background: #e0e8f2; color: #2a4060; }
.legal-section {
  margin-bottom: 32px;
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid var(--line, #eae6e0);
  border-radius: 14px;
}
.legal-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.28rem;
  margin: 0 0 14px;
  color: #2a2a32;
}
.legal-section h3 {
  font-size: 1.02rem;
  margin: 18px 0 8px;
  color: #3b3b45;
}
.legal-section p,
.legal-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #3b3b45;
}
.legal-section ul,
.legal-section ol { padding-left: 1.25em; margin: 8px 0 12px; }
.legal-section li { margin-bottom: 8px; }
.legal-section a { color: #4a6a96; text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: #2f4f78; }
.legal-table-wrap { overflow-x: auto; margin: 12px 0 16px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  background: #fff;
  border: 1px solid var(--line, #eae6e0);
  border-radius: 12px;
  overflow: hidden;
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line, #eae6e0);
  line-height: 1.5;
  color: #3b3b45;
}
.legal-table th {
  background: #eef3f9;
  color: #2a2a32;
  font-weight: 600;
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-disclaimer { font-size: .9rem; color: #5a5a66; margin-top: 12px; }
.legal-back { margin-top: 36px; }

.room-page { padding: 28px 0 64px; }
.room-page-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .86rem;
  color: var(--muted);
  margin: 0 0 18px;
}
.room-page-crumb a { color: var(--blue-deep); }
.room-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.room-page-layout .room-detail-gallery {
  max-height: none;
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.room-page-layout .room-detail-body {
  overflow: visible;
}
.room-page-layout .room-detail-body h1 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: #3b3b45;
}
.room-page-layout .room-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-page-prices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.room-page-prices li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .92rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.room-page-prices li:last-child { border-bottom: 0; }
.room-page-others { margin-top: 40px; }
.room-page-others h2 {
  font-size: 1.2rem;
  margin: 0 0 16px;
}
.room-page-others-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
a.room-card { color: inherit; text-decoration: none; }
@media (max-width: 860px) {
  .room-page-layout { grid-template-columns: 1fr; }
}
.legal-body footer.site { margin-top: 24px; }

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .92rem;
  margin-bottom: 16px;
  animation: slideSoft .4s var(--ease);
}
.form-status.ok { display: block; background: rgba(79, 138, 109, .14); color: #2f6b4d; }
.form-status.err { display: block; background: rgba(160, 110, 127, .14); color: var(--mauve-deep); }
.avail-box {
  display: none;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: .92rem;
  animation: slideSoft .4s var(--ease);
}
@keyframes slideSoft {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.avail-box.ok,
.avail-box.idle,
.avail-box.load,
.avail-box.no {
  display: block;
}
.avail-box.ok {
  background: rgba(79, 138, 109, .1);
  color: #2f6b4d;
  border: 1px solid rgba(79, 138, 109, .28);
}
.avail-box.idle {
  background: #f7f5f2;
  color: var(--muted);
  border: 1px dashed var(--line);
}
.avail-box.no {
  background: rgba(160, 110, 127, .12);
  color: var(--mauve-deep);
  border: 1px solid rgba(160, 110, 127, .3);
}
.avail-box.load {
  background: rgba(109, 132, 173, .1);
  color: var(--blue-deep);
}
.avail-box.has-picker {
  background: #fbfaf8;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px;
}
.avail-box .price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-deep);
}
.room-pick-lead {
  margin: 0 0 12px;
  font-size: .9rem;
  line-height: 1.45;
  color: #3b3b45;
}
.room-pick-summary {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(79, 138, 109, .12);
  border: 1px solid rgba(79, 138, 109, .28);
  color: #2f6b4d;
}
.room-pick-summary-title { font-size: .95rem; margin-bottom: 4px; }
.room-pick-summary-meta { font-size: .84rem; margin-bottom: 6px; opacity: .92; }
.room-pick-grid {
  display: grid;
  gap: 10px;
}
.room-pick {
  display: grid;
  gap: 6px;
  width: 100%;
  text-align: left;
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease), background .2s;
}
.room-pick:hover {
  border-color: rgba(109, 132, 173, .55);
  box-shadow: 0 6px 18px rgba(59, 59, 69, .08);
  transform: translateY(-1px);
}
.room-pick:focus-visible {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(109, 132, 173, .18);
}
.room-pick.is-selected {
  border-color: rgba(79, 138, 109, .65);
  background: rgba(79, 138, 109, .08);
  box-shadow: 0 0 0 1px rgba(79, 138, 109, .25);
}
.room-pick-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.room-pick-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
}
.room-pick-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}
.room-pick-meta {
  font-size: .82rem;
  color: var(--muted);
}
.room-pick-action {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: .01em;
}
.room-pick.is-selected .room-pick-action {
  color: #2f6b4d;
}

.contact-line .ic,
.loc-list .ic,
.feature-list .ic {
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.contact-line:hover .ic,
.loc-list li:hover .ic,
.feature-list li:hover .ic {
  transform: scale(1.1) rotate(-4deg);
}

.nav-links.open li {
  animation: navItem .4s var(--ease) both;
}
.nav-links.open li:nth-child(1) { animation-delay: .04s; }
.nav-links.open li:nth-child(2) { animation-delay: .08s; }
.nav-links.open li:nth-child(3) { animation-delay: .12s; }
.nav-links.open li:nth-child(4) { animation-delay: .16s; }
.nav-links.open li:nth-child(5) { animation-delay: .2s; }
.nav-links.open li:nth-child(6) { animation-delay: .24s; }
@keyframes navItem {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* FOOTER */
footer.site {
  background:
    linear-gradient(180deg, #444450 0%, #3b3b45 40%, #32323a 100%);
  color: #cfcfd6;
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}
footer.site .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}
footer.site .brand img {
  width: auto;
  height: 72px;
  max-width: 180px;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
footer.site .brand:hover img { transform: rotate(-3deg) scale(1.05); }
footer.site p { font-size: .92rem; color: #b6b6c0; max-width: 36ch; }
footer.site h5 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 14px;
  font-size: 1rem;
}
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 9px; }
footer.site ul a {
  color: #b6b6c0;
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
}
footer.site ul a:hover {
  color: #fff;
  padding-left: 4px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  font-size: .82rem;
  color: #8f8f9a;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.foot-bottom-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 100%;
  min-width: 0;
}
.foot-credit {
  font-size: .78rem;
  color: #7a7a84;
}
.foot-credit a {
  color: inherit;
  text-decoration: none;
}
.foot-credit a:hover {
  color: #cfcfd6;
}
.foot-login {
  font-size: .72rem;
  color: #6a6a74;
  text-decoration: none;
  opacity: .7;
  letter-spacing: .02em;
  transition: color .25s, opacity .25s;
}
.foot-login:hover { color: #cfcfd6; opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 20, 28, .93);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; animation: lbIn .28s ease; }
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  transition: opacity .28s ease, transform .35s var(--ease);
}
.lightbox img.swap {
  opacity: 0;
  transform: scale(.97);
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .14);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background .25s, transform .3s var(--ease), box-shadow .25s;
}
.lightbox button:hover {
  background: rgba(255, 255, 255, .28);
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}
.lb-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .9rem;
  background: rgba(0, 0, 0, .45);
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

body.is-ready { opacity: 1; }

@media (max-width: 860px) {
  section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .discount-promo { padding-bottom: 56px; }
  .hero-inner { padding: 56px 0 72px; }
  .about-grid,
  .loc-grid,
  .contact-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .discount-band { grid-template-columns: 1fr; padding: 18px 20px; }
  .discount-band-cta { justify-self: start; }
  .discount-band-cta .btn { width: 100%; text-align: center; }
  .about-media { order: -1; }
  .loc-grid { gap: 22px; }
  .loc-map {
    border-radius: 16px;
    min-height: 220px;
    aspect-ratio: 4/3;
  }
  .loc-list li:hover { padding-left: 0; }
  .loc-list .ic { width: 36px; height: 36px; }
  .loc-list .dist { font-size: .92rem; }
  .loc-marker-pill--route,
  .loc-marker-pill--route .loc-marker-name--compact {
    max-width: 6.4rem;
  }
  .loc-marker-name--compact {
    font-size: .56rem;
    padding: 2px 5px;
    max-width: 5.8rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(247, 245, 242, .98);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .35s var(--ease);
    z-index: -1;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { display: block; padding: 13px; }
  .nav-links .btn { margin: 8px auto; }
  .nav-toggle { display: block; }
  .feature-list { grid-template-columns: 1fr; }
  .hero::before { animation: none; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  section { padding: 40px 0; }
  .section-head { margin-bottom: 26px; }
  .discount-promo { padding-bottom: 40px; }
  .stats { margin-top: -28px; }
  .hero-inner { padding: 48px 0 56px; }
  .contact { padding-bottom: 48px; }
  footer.site { padding-top: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  body { opacity: 1; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger > .reveal-item,
  .rooms-grid > .room-card,
  .stats > .stat,
  .gallery-grid > figure,
  .discount-tiers > .discount-tier,
  .feature-list > li,
  .info-strip > .box {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
