:root {
  --bg: #f5fbff;
  --bg-2: #eef7fd;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #17384f;
  --muted: #5f7c90;
  --brand: #2b84c6;
  --brand-2: #5fa9df;
  --brand-3: #dff0fb;
  --sea: #8ed0f3;
  --sea-deep: #0f5f96;
  --line: rgba(43, 132, 198, 0.14);
  --shadow: 0 22px 60px rgba(18, 62, 98, 0.10);
  --shadow-strong: 0 30px 90px rgba(18, 62, 98, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 210, 247, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(95, 169, 223, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fdff 0%, #f1f8fd 42%, #ecf5fb 100%);
}

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

.site-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(42px);
  opacity: .6;
  pointer-events: none;
  z-index: -1;
}
.blur-1 {
  width: 320px;
  height: 320px;
  top: 80px;
  left: -80px;
  background: rgba(143, 210, 247, 0.34);
}
.blur-2 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 180px;
  background: rgba(95, 169, 223, 0.24);
}
.blur-3 {
  width: 260px;
  height: 260px;
  left: 35%;
  bottom: 120px;
  background: rgba(43, 132, 198, 0.12);
}

.section-space { padding: 50px 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: .95;
  margin: 18px 0 18px;
  letter-spacing: -.02em;
}
.section-copy,
.lead-text {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}
.section-heading .section-copy { max-width: 760px; }
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(43, 132, 198, 0.18);
  color: var(--sea-deep);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(15, 66, 103, 0.05);
}
.small-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sea-deep);
  opacity: .86;
}
.floating-card {
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.floating-card1 {
  box-shadow: var(--shadow)!important;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease!important;
}
.floating-card1:hover {
  transform: translateY(-5px)!important;
  box-shadow: var(--shadow-strong)!important;
}

.main-nav { padding: 18px 0; }
.nav-shell {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(43, 132, 198, 0.10);
  border-radius: 24px;
  padding: 10px 18px;
  box-shadow: 0 18px 45px rgba(18, 62, 98, 0.07);
}
.main-nav.scrolled .nav-shell { background: rgba(255, 255, 255, 0.88); }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text) !important;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand), var(--sea));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(24, 89, 136, 0.20);
}
.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}
.brand-copy strong {
  color:var(--brand);
  font-size:1.3rem;
}
.nav-link {
  color: var(--text) !important;
  font-weight: 700;
  padding: .75rem 1rem !important;
  border-radius: 999px;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(95, 169, 223, 0.10);
  color: var(--sea-deep) !important;
}
.navbar-toggler {
  border-radius: 16px;
  padding: .5rem .72rem;
  background: rgba(255,255,255,.65);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .95rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: 0;
}
.btn-brand:hover,
.btn-brand:focus-visible { color: #fff; filter: saturate(1.05); }
.btn-soft {
  background: rgba(255,255,255,.82);
  color: var(--text);
  border: 1px solid rgba(43, 132, 198, 0.12);
}
.btn-soft:hover,
.btn-soft:focus-visible {
  background: #fff;
  color: var(--text);
}
.nav-cta { padding-inline: 1.35rem; }

.hero-section {
  position: relative;
  padding: 160px 0 0px;
}
.hero-copy { max-width: 600px; }
.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 20px 0 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(43, 132, 198, 0.12);
  color: var(--text);
  font-weight: 700;
}
.hero-visual {
  position: relative;
  padding-bottom: 60px;
}
.hero-main-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(43, 132, 198, 0.12);
  background: var(--surface-strong);
}
.hero-main-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.hero-main-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 48, 79, 0.10), rgba(7, 48, 79, 0.72));
  backdrop-filter: blur(10px);
}
.hero-main-overlay span {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .86;
}
.hero-main-overlay strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.45;
}
.hero-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.mini-photo {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(43, 132, 198, 0.12);
}
.mini-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.hero-floating-note {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: min(270px, 82%);
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(43, 132, 198, 0.12);
}
.hero-floating-note strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}
.hero-floating-note p {
  margin: .7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

.intro-strip { padding-top: 40px; }
.feature-pill-card,
.amenity-card,
.editorial-card,
.map-shell,
.booking-shell,
.booking-mini-card,
.gallery-frame {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-pill-card {
  height: 100%;
  padding: 1.5rem;
}
.feature-pill-card i {
  font-size: 1.55rem;
  color: var(--brand);
}
.feature-pill-card strong {
  display: block;
  margin: .9rem 0 .45rem;
  font-size: 1.06rem;
}
.feature-pill-card span {
  display: block;
  color: var(--muted);
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.info-grid div {
  padding: 1.05rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(43, 132, 198, 0.10);
}
.info-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}
.editorial-card {
  padding: 18px;
  height: 100%;
}
.editorial-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.editorial-card h3 {
  margin: 10px 0 8px;
  font-size: 1.45rem;
}
.editorial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.large-card { grid-row: span 2; }
.large-card img {
  height: 340px;
  margin-bottom: 14px;
}
.editorial-grid > :nth-child(2) img {
  height: 225px;
  margin-bottom: 12px;
}
.accent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(95, 169, 223, 0.12), rgba(223, 240, 251, 0.75));
}

.soft-band {
  background: linear-gradient(180deg, rgba(240, 248, 253, 0.95), rgba(255,255,255,0));
}
.amenity-card {
  padding: 2rem;
  height: 100%;
}
.amenity-card i {
  font-size: 1.7rem;
  color: var(--sea-deep);
}
.amenity-card h3 {
  margin: 1rem 0 .7rem;
  font-size: 1.35rem;
}
.amenity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-section { position: relative; }
.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}
.gallery-panel,
.gallery-specs {
  padding: 16px;
}
.compact-carousel .carousel-inner {
  border-radius: 26px;
  background: linear-gradient(180deg, #f5fbff, #eaf3fa);
}
.compact-carousel .carousel-item {
  background: linear-gradient(180deg, #f5fbff, #eaf3fa);
}
.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.compact-carousel .carousel-item img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f5fbff, #eaf3fa);
}
.carousel-caption-custom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: .95rem 1rem;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 49, 80, 0.06), rgba(8, 49, 80, 0.72));
  backdrop-filter: blur(8px);
}
.carousel-caption-custom span {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .84;
}
.carousel-caption-custom strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  line-height: 1.5;
}
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: .9;
}
.thumb-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.thumb {
  width: 94px;
  height: 68px;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: .8;
  transition: transform .25s ease, opacity .25s ease, border-color .25s ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb:hover,
.thumb.active {
  opacity: 1;
  transform: translateY(-3px);
  border-color: rgba(43, 132, 198, 0.45);
}
.gallery-specs {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(240, 248, 253, .92));
}
.gallery-specs h3 {
  margin: 10px 0 10px;
  font-size: 1.8rem;
}
.gallery-specs p {
  color: var(--muted);
  line-height: 1.8;
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.spec-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(43, 132, 198, 0.12);
}
.spec-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(95, 169, 223, 0.14);
  color: var(--sea-deep);
  font-size: 1.2rem;
}
.spec-item span {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-item strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}
.specs-note {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(43, 132, 198, 0.08);
  border: 1px solid rgba(43, 132, 198, 0.10);
}
.specs-note i {
  color: var(--sea-deep);
  font-size: 1.1rem;
  margin-top: 2px;
}
.specs-note p {
  margin: 0;
  font-size: .95rem;
}
.gallery-modal .modal-content {
  border: 0;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(10, 31, 47, .96);
}
.gallery-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background-color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: .85rem;
}
.modal-carousel .carousel-item {
  background: rgba(10, 31, 47, .96);
}
.modal-carousel .carousel-item img {
  width: 100%;
  height: min(84vh, 920px);
  object-fit: contain;
  padding: 2rem;
}

.location-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.location-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(43, 132, 198, 0.10);
}
.location-list i {
  color: var(--brand);
  font-size: 1.2rem;
}
.map-shell {
  overflow: hidden;
  padding: 14px;
}
.map-shell iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 24px;
}

.booking-section { padding-top: 72px; }
.booking-shell {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #1f6fa8, #3d92cb 48%, #8ed0f3 120%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(26, 79, 119, 0.22);
}
.light-chip {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.booking-shell h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .96;
  margin: 18px 0 18px;
}
.booking-shell p {
  color: rgba(255,255,255,.92);
  line-height: 1.8;
}
.booking-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.booking-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.97);
}
.booking-list i { color: #e9f7ff; }
.booking-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.booking-mini-card {
  padding: 1.1rem 1.15rem;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}
.booking-mini-card p {
  margin: 10px 0 0;
  color: #fff;
}
.btn-whatsapp-large {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: linear-gradient(135deg, #ffffff, #f7feff);
  color: #1ba957;
}
.btn-whatsapp-large:hover,
.btn-whatsapp-large:focus-visible { color: #1ba957; }
.booking-note {
  color: rgba(255,255,255,.94);
  text-align: center;
}

.site-footer { padding: 18px 0 44px; }
.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(43, 132, 198, 0.12);
}
.footer-shell p,
.footer-shell span {
  margin: 0;
  color: var(--muted);
}
.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.footer-shell a {
  color: var(--sea-deep);
  font-weight: 800;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.footer-shell a:hover {
  color: var(--text);
}

@media (max-width: 1199.98px) {
  .hero-main-card img { height: 500px; }
  .compact-carousel .carousel-item img { height: 430px; }
}

@media (max-width: 991.98px) {
  .section-space { padding: 50px 0; }
  .hero-section { padding-top: 120px; }
  .hero-floating-note {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
  .editorial-grid,
  .booking-shell { grid-template-columns: 1fr; }
  .main-nav { padding-top: 12px; }
  .compact-carousel .carousel-item img { height: 360px; }
  .footer-shell,
  .footer-meta { justify-items: start; }
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .section-space { padding: 50px 0; }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 0px;
  }
  .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .lead-text,
  .section-copy {
    line-height: 1.75;
    font-size: .98rem;
  }
  .hero-main-card img { height: 330px; }
  .hero-main-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .hero-side-grid { gap: 12px; }
  .mini-photo img { height: 118px; }
  .hero-badges span,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .info-grid { grid-template-columns: 1fr; }
  .large-card img,
  .editorial-grid > :nth-child(2) img { height: 220px; }
  .gallery-frame { padding: 10px; }
  .compact-carousel .carousel-item img { height: 260px; }
  .thumb {
    width: 78px;
    height: 56px;
  }
  .carousel-caption-custom {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: .8rem .88rem;
  }
  .carousel-caption-custom strong { font-size: .94rem; }
  .map-shell iframe { height: 320px; }
  .booking-shell { padding: 1.4rem; }
}

@media (hover: none) {
  .floating-card:hover,
  .btn:hover,
  .thumb:hover { transform: none; }
}

@media (max-width: 991.98px) {
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-panel,
  .gallery-specs {
    padding: 14px;
  }
}

.gallery-panel,
.gallery-specs {
  border-radius: 22px;
}

.booking {
    background-image: url('../img/booking.svg');
    width: 18px;
    height: 18px;
}

.blu {
  color:#003b95!important;
}

.airbnb {
    background-image: url('../img/airbnb.svg');
    width: 18px;
    height: 18px;
    border-radius: 0.25em;
}

.rosso {
  color:#ff385c!important;
}

.place-gallery-shell {
  padding: 18px;
  margin-top: 34px;
  border-radius: 22px;
}
.place-masonry {
  columns: 4 220px;
  column-gap: 18px;
}
.place-shot {
  margin: 0 0 18px;
  break-inside: avoid;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(43, 132, 198, 0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.place-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 72, 109, 0.14);
}
.place-shot img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .place-masonry {
    columns: 3 180px;
  }
}

@media (max-width: 767.98px) {
  .place-gallery-shell {
    padding: 14px;
    overflow: hidden;
  }
  .place-masonry {
    columns: 1;
    column-gap: 14px;
  }
  .place-shot {
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 22px;
  }
  .place-shot img {
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .place-masonry {
    columns: 1;
  }
}
