/* ==========================================================================
   B&B Le More — design tokens
   ========================================================================== */
:root {
  --navy: #385b8a;
  --navy-deep: #1f3552;
  --navy-ink: #253346;
  --mint: #a8d8ce;
  --mint-soft: #eef6f4;
  --sand: #faf8f3;
  --cream: #fffefa;
  --grey: #bec3c5;
  --grey-soft: #e7e6e2;
  --coral: #c97a58;
  --coral-deep: #a85f40;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -25px rgba(31, 53, 82, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(31, 53, 82, 0.28);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-family: var(--font-serif); font-weight: 600; line-height: 1.12; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 14px;
  font-weight: 500;
}
.eyebrow-light { color: var(--mint); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy-deep);
  margin-bottom: 22px;
}
.title-light { color: var(--cream); }

.body-text {
  font-size: 17px;
  line-height: 1.75;
  color: #4c5a6b;
  max-width: 54ch;
}
.title-light + .body-text,
.testimonials .body-text { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.welcome-grid .reveal, .our-bnb-grid .reveal, .dintorni-grid .reveal, .eat-grid .reveal { transition-delay: .05s; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-icon { width: 17px; height: 17px; }
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 14px 28px -12px rgba(169, 95, 64, 0.55);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(169, 95, 64, 0.65); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 16px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 20px 0;
}
.site-header.is-scrolled {
  background: rgba(255, 254, 250, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(31,53,82,0.4);
  padding: 12px 0;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color .4s var(--ease);
}
.is-scrolled .brand { color: var(--navy-deep); }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.8;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14.5px;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color .4s var(--ease);
}
.is-scrolled .nav-link { color: var(--navy-ink); }
.nav-link::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: currentColor;
  transition: right .35s var(--ease);
}
.nav-link:hover::after { right: 0; }
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream) !important;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  width: 40px; height: 40px;
  border: none; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background-color .35s var(--ease);
}
.is-scrolled .nav-toggle span { background: var(--navy-deep); box-shadow: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 18s var(--ease) forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,34,53,0.35) 0%, rgba(20,34,53,0.15) 32%, rgba(20,34,53,0.55) 78%, rgba(15,26,41,0.86) 100%),
    linear-gradient(90deg, rgba(20,34,53,0.55) 0%, rgba(20,34,53,0.05) 45%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px 28px 96px;
  width: 100%;
}
.hero-title {
  font-size: clamp(34px, 5.4vw, 64px);
  color: var(--cream);
  max-width: 26ch;
  white-space: normal;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-lede {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.7;
  max-width: 48ch;
  margin: 20px 0 26px;
}
.hero .eyebrow { color: var(--mint); }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 13.5px;
  margin-bottom: 30px;
}
.stars { display: inline-flex; gap: 2px; color: #f0c14b; }
.stars svg { width: 15px; height: 15px; }
.hero-trust-marquee-track span:last-child { display: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; border-radius: 3px;
  background: var(--cream);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.wave-divider {
  display: block; width: 100%; height: 34px;
  margin-top: -2px; position: relative; z-index: 1;
}
.wave-divider path { fill: none; stroke: var(--mint); stroke-width: 2; opacity: 0.55; }

/* ==========================================================================
   Generic sections
   ========================================================================== */
.section { padding: 96px 0; }

.welcome, .our-bnb { background: var(--cream); }

.welcome-grid, .our-bnb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.our-bnb-grid { grid-template-columns: 1fr 1fr; }
.our-bnb-grid .our-bnb-media { order: 2; }
.our-bnb-grid .our-bnb-text { order: 1; }

.welcome-media, .our-bnb-media { position: relative; }
.welcome-media img, .our-bnb-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .6s var(--ease);
}
.our-bnb-media img { aspect-ratio: 5/4; }
.welcome-media:hover img, .our-bnb-media:hover img { transform: scale(1.02); }

.media-chip {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--navy);
  color: var(--cream);
  padding: 20px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 2px;
  text-align: center;
}
.media-chip strong { font-family: var(--font-serif); font-size: 30px; line-height: 1; }
.media-chip small { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

/* ==========================================================================
   Testimonials (sea background)
   ========================================================================== */
.testimonials { position: relative; padding: 110px 0; overflow: hidden; }
.testimonials-media { position: absolute; inset: 0; z-index: 0; }
.testimonials-media img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,53,82,0.82), rgba(20,35,55,0.9)); }
.testimonials-inner { position: relative; z-index: 1; text-align: center; }
.testimonials-inner .eyebrow, .testimonials-inner .section-title { display: block; }
.testimonials-inner .section-title { margin: 0 auto 50px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}
.testimonial-card {
  margin: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 34px;
  border-radius: var(--radius);
  transition: transform .5s var(--ease), background-color .5s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.testimonial-card .stars { color: #f0c14b; margin-bottom: 16px; }
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 18px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

/* ==========================================================================
   Rooms
   ========================================================================== */
.rooms-section { background: var(--sand); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-intro { margin-bottom: 18px; font-weight: 500; color: var(--navy-ink); }

.amenity-row { display: flex; flex-wrap: wrap; gap: 14px; }
.amenity-row li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--mint-soft);
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}
.amenity-row svg { width: 17px; height: 17px; color: var(--navy); }

.room-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: stretch;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px;
  margin-bottom: 40px;
}
.room-card-reverse { grid-template-columns: 1fr 1.15fr; }
.room-card-reverse .room-gallery { order: 2; }
.room-card-reverse .room-info { order: 1; }

.room-gallery-main { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/11; }
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .3s ease; }
.room-gallery:hover .room-gallery-main img { transform: scale(1.04); }
.room-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.room-gallery-caption { margin: 10px 2px 0; font-size: 12.5px; letter-spacing: 0.03em; color: #8b97a6; }
.thumb {
  width: 68px; height: 52px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer; background: none;
  opacity: 0.6; transition: opacity .3s ease, border-color .3s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { opacity: 1; }
.thumb.is-active { opacity: 1; border-color: var(--coral); }

.room-info { display: flex; flex-direction: column; justify-content: center; padding: 14px 18px 14px 4px; }
.room-info-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.room-info-head h3 { font-size: 32px; color: var(--navy-deep); }
.room-price-from { font-size: 14px; color: var(--coral-deep); white-space: nowrap; }
.room-price-from strong { font-size: 17px; }

.price-table { margin: 6px 0 22px; }
.price-table summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--navy);
  font-weight: 500;
  padding: 4px 0;
}
.price-table summary::-webkit-details-marker { display: none; }
.price-table summary svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.price-table[open] summary svg { transform: rotate(180deg); }
.price-table ul {
  margin-top: 12px;
  border-top: 1px solid var(--grey-soft);
  animation: price-open .35s var(--ease);
}
.price-table li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--grey-soft);
  font-size: 14.5px;
  color: #4c5a6b;
}
.price-table li strong { color: var(--navy-deep); font-family: var(--font-serif); font-size: 16px; }
@keyframes price-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   Info utili
   ========================================================================== */
.info-utili { background: var(--navy-deep); color: var(--cream); }
.info-utili .eyebrow { color: var(--mint); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.info-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
}
.info-list-check li::before {
  content: '✓'; background: none; color: var(--mint);
  width: auto; height: auto; top: -1px; font-size: 14px;
}
.info-subhead {
  font-family: var(--font-sans);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint); font-weight: 500;
  margin: 0 0 14px;
}
.info-grid > div:last-child .info-list { margin-bottom: 30px; }
.info-grid > div:last-child .info-list:last-child { margin-bottom: 0; }

/* ==========================================================================
   Location / map / dintorni
   ========================================================================== */
.location { background: var(--cream); }
.location .section-inner:first-child { margin-bottom: 40px; }
.map-frame {
  width: 100%; height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 96px;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

.dintorni-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
.dintorni-media {
  border-radius: 50% 50% 46% 54% / 54% 46% 54% 46%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1/1;
  border: 6px solid var(--mint-soft);
}
.dintorni-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Dove mangiare
   ========================================================================== */
.eat { background: var(--sand); }
.eat-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; margin-bottom: 64px; }

.eat-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.eat-blob {
  position: absolute;
  z-index: 0;
  background: var(--navy);
  border-radius: 63% 37% 54% 46% / 43% 39% 61% 57%;
}
.eat-blob-1 { top: -4%; right: 6%; width: 68%; height: 78%; }
.eat-blob-2 { bottom: -6%; left: 2%; width: 30%; height: 26%; background: var(--mint); opacity: 0.6; border-radius: 58% 42% 62% 38% / 47% 53% 47% 53%; }
.eat-cutout {
  position: relative;
  z-index: 1;
  max-width: 92%;
  filter: drop-shadow(0 24px 40px rgba(31, 53, 82, 0.28));
  transition: transform .6s var(--ease);
}
.eat-media:hover .eat-cutout { transform: scale(1.02) rotate(-1deg); }
.eat-badge {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 4%;
  background: var(--navy);
  color: var(--cream);
  border-radius: 58% 42% 62% 38% / 47% 53% 47% 53%;
  padding: 30px 36px 26px;
  text-align: left;
  box-shadow: var(--shadow-card);
}
.eat-badge strong { display: block; font-family: var(--font-serif); font-size: 32px; line-height: 1; }
.eat-badge small { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.food-grid-item {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease);
}
.food-grid-item:hover { transform: translateY(-4px) scale(1.02); }

@media (min-width: 981px) {
  .food-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; max-width: none; }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: -20% -10%;
  background: radial-gradient(circle at 30% 20%, rgba(168,216,206,0.18), transparent 55%);
}
.final-cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.final-cta-icon { width: 46px; height: 46px; color: var(--mint); animation: bob 3.5s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.final-cta .section-title { margin-bottom: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.85); padding: 70px 0 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand .brand-name { font-size: 24px; }
.footer-col h3 {
  font-family: var(--font-sans); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint); font-weight: 500; margin: 0 0 16px;
}
.footer-col p { font-size: 14.5px; line-height: 1.7; margin-bottom: 10px; }
.footer-col a { display: inline-flex; align-items: center; gap: 8px; transition: color .3s ease; }
.footer-col a:hover { color: var(--mint); }
.inline-icon { width: 15px; height: 15px; flex-shrink: 0; vertical-align: -2px; margin-right: 4px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
}
.social-links svg { width: 17px; height: 17px; }
.social-links a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ==========================================================================
   Mobile floating CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 90;
  background: var(--coral);
  color: var(--cream);
  padding: 15px;
  border-radius: 999px;
  align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.mobile-cta svg { width: 18px; height: 18px; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,22,33,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; transition: opacity .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 26px;
  background: none; border: none; color: var(--cream);
  font-size: 34px; line-height: 1; cursor: pointer;
}

/* ==========================================================================
   Grain-free subtle texture on light section (kept minimal, no extra asset)
   ========================================================================== */

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .welcome-grid, .our-bnb-grid, .dintorni-grid, .eat-grid { grid-template-columns: 1fr; gap: 40px; }
  .our-bnb-grid .our-bnb-media, .our-bnb-grid .our-bnb-text { order: initial; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
  .room-card, .room-card-reverse { grid-template-columns: 1fr; }
  .room-card-reverse .room-gallery, .room-card-reverse .room-info { order: initial; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; margin-bottom: 10px; }
  .eat-media { min-height: 320px; }
  .food-grid { grid-auto-rows: 220px; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--navy-deep); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-link, .site-header .nav-cta { color: var(--cream) !important; font-size: 18px; }
  .nav-cta { margin-top: 10px; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .is-scrolled .nav-toggle span, .nav.is-open ~ .nav-toggle span { background: var(--cream); }

  .hero-content { padding: 130px 20px 84px; }
  .hero .eyebrow { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 10px; }
  .hero-title { font-size: clamp(30px, 8vw, 38px); }
  .hero-lede { font-size: 14.5px; line-height: 1.6; margin: 14px 0 20px; }
  .hero-trust {
    display: flex;
    width: 100%;
    padding: 10px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .hero-trust-marquee {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .hero-trust-marquee-track {
    display: flex;
    width: max-content;
    animation: trust-marquee 9s linear infinite;
  }
  .hero-trust-marquee-track span {
    white-space: nowrap;
    padding-right: 28px;
    display: inline-block;
  }
  @keyframes trust-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; justify-content: center; padding: 14px 12px; font-size: 13.5px; white-space: normal; text-align: center; }
  .hero-actions .btn-icon { width: 15px; height: 15px; flex-shrink: 0; }
  .section { padding: 68px 0; }
  .section-inner { padding: 0 20px; }
  .media-chip { right: 0; bottom: -18px; padding: 14px 18px; }
  .dintorni-media { border-radius: 28px; aspect-ratio: 4/3; }
  .eat-media { min-height: 260px; }
  .eat-badge { padding: 22px 26px 18px; }
  .eat-badge strong { font-size: 26px; }
  .food-grid { grid-auto-rows: 150px; gap: 12px; }
  .mobile-cta { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  body { padding-bottom: 78px; }
}
