/* ===== Pikala Restaurant — landing ufficiale ===== */
:root {
  --cream: #fcf8f5;
  --cream-2: #f5eee7;
  --blue: #304c89;
  --blue-deep: #263d6f;
  --gold: #c7bb90;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6ddd4;

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

  --wrap: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ===== buttons ===== */
.btn-solid, .btn-ghost, .btn-outline, .btn-book {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.btn-solid { background: var(--blue); color: var(--cream); }
.btn-solid:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--cream); }
.btn-book { background: var(--blue); color: var(--cream); padding: 0.7em 1.4em; }
.btn-book:hover { background: var(--blue-deep); }
.link-underline { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: border-color .3s; }
.link-underline:hover { border-color: var(--blue); }

/* ===== tier bar ===== */
.tier { background: var(--blue-deep); color: rgba(255,255,255,.85); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.tier-inner { max-width: var(--wrap); margin: 0 auto; padding: 0.5rem 1.5rem; display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.tier-dot::before { content: "• "; color: var(--gold); }
.tier a { opacity: .8; transition: opacity .3s; }
.tier a:hover { opacity: 1; color: var(--gold); }

/* ===== nav ===== */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s, border-color .4s, padding .4s;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(38,61,111,.08); border-color: var(--line); padding: 0.65rem 1.5rem; }
.brand-mark { height: 30px; width: auto; }
.brand-word { font-family: var(--serif); font-weight: 600; font-size: 34px; letter-spacing: 0.14em; fill: var(--blue); }
.nav-links { display: flex; gap: 1.7rem; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 300; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-gallery { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.nav-gallery:hover { color: var(--blue); }
.nav-map {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap; transition: color .3s;
}
.nav-map:hover { color: var(--blue); }
.nav-map-ico { width: 15px; height: 15px; flex: none; }
/* fra 901 e 1080px la barra è stretta: resta solo il pin.
   Fra 621 e 900px il menu è a comparsa e il testo ci sta.
   Sotto i 620px lo spazio finisce di nuovo: solo pin. */
@media (max-width: 1080px) and (min-width: 901px),
       (max-width: 620px) { .nav-map span { display: none; } .nav-map-ico { width: 17px; height: 17px; } }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--blue); transition: .3s; }

/* ===== hero ===== */
.hero { position: relative; min-height: calc(100svh - 40px); display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s var(--ease); }
.hero-slide.on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.on img { animation: slowzoom 9s var(--ease) forwards; }
@keyframes slowzoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-dots { position: absolute; bottom: 1.7rem; right: clamp(1.2rem, 4vw, 3rem); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 34px; height: 3px; background: rgba(255,255,255,.35); border-radius: 2px; transition: background .4s; padding: 0; }
.hero-dot.on { background: var(--gold); }
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-veil { position: absolute; inset: 0; background:
  linear-gradient(to right, rgba(20,28,46,.78) 0%, rgba(20,28,46,.5) 48%, rgba(20,28,46,.22) 100%),
  linear-gradient(to top, rgba(20,28,46,.6) 0%, rgba(20,28,46,.15) 42%, rgba(20,28,46,.42) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 0 1.8rem; color: #fff; width: 100%; }
.hero .eyebrow { color: rgba(255,255,255,.92); text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-sub { text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 400; margin: 1rem 0 1.4rem; text-shadow: 0 2px 40px rgba(0,0,0,.3); }
.hero-sub { max-width: 46ch; font-size: 1.12rem; font-weight: 300; color: rgba(255,255,255,.92); margin-bottom: 2.4rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-size: 1.3rem; opacity: .8; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ===== statement ===== */
.statement { max-width: 940px; margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) 1.8rem; text-align: center; }
.statement h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 400; margin: 0 0 1.6rem; }
.statement-body { color: var(--muted); max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }
.statement-body strong { color: var(--ink); font-weight: 500; }
.duo-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ===== duo ===== */
.duo { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem clamp(3rem,7vw,6rem); display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.duo-card { background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; }
.duo-media { aspect-ratio: 4/3; overflow: hidden; }
.duo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.duo-card:hover .duo-media img { transform: scale(1.06); }
.duo-body { padding: 2.2rem 2rem 2.4rem; }
.duo-body h3 { font-size: 1.8rem; margin: 0.5rem 0 0.9rem; }
.duo-body p { color: var(--muted); margin-bottom: 1.4rem; }

/* ===== gallery strip ===== */
.gallery-strip { background: var(--cream-2); padding: clamp(4rem,9vw,7rem) 0; }
.gallery-head { text-align: center; margin-bottom: 2.6rem; padding: 0 1.5rem; }
.gallery-head h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 400; margin-top: .8rem; }
.strip { display: flex; gap: 12px; overflow-x: auto; padding: 0 1.5rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.strip figure { flex: 0 0 auto; width: clamp(240px, 30vw, 360px); aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; scroll-snap-align: start; cursor: pointer; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.strip figure:hover img { transform: scale(1.07); }
.gallery-more { text-align: center; margin-top: 2.4rem; }

/* ===== menu ===== */
.menu { max-width: 1040px; margin: 0 auto; padding: clamp(5rem,11vw,9rem) 1.8rem; }
.menu-head { text-align: center; margin-bottom: 2.6rem; }
.menu-head h2 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 400; margin: .8rem 0 1rem; }
.menu-lead { color: var(--muted); max-width: 66ch; margin: 0 auto 1.2rem; }
.menu-intro { color: var(--muted); max-width: 56ch; margin: 0 auto; font-size: 0.9rem; font-style: italic; opacity: .85; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 3rem; border-bottom: 1px solid var(--line); padding-bottom: 1.4rem; }
.menu-tab { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0.55em 1.1em; border-radius: 2px; transition: all .3s; }
.menu-tab:hover { color: var(--blue); }
.menu-tab.active { background: var(--blue); color: var(--cream); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px);} to{opacity:1;transform:none;} }
.menu-note { text-align: center; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.6rem; }
.dish { padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.dish:last-child { border-bottom: none; }
.dish-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; }
.dish-desc { color: var(--muted); font-size: 0.92rem; margin-top: .3rem; }
.menu-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }

/* ===== boat ===== */
.boat { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.boat-media, .boat-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.boat-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,45,84,.9) 0%, rgba(28,45,84,.66) 55%, rgba(28,45,84,.34) 100%); }
.boat-content { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 4rem 1.8rem; color: #fff; }
.boat-content h2 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 400; margin: 1rem 0 1.3rem; }
.boat-content p { max-width: 50ch; color: rgba(255,255,255,.92); margin-bottom: 1.6rem; }
.boat-cta { display: flex; align-items: stretch; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 1.2rem; }
.btn-call {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: var(--gold); color: #23324f;
  padding: 0.9rem 1.6rem; border-radius: 3px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn-call:hover { transform: translateY(-3px); background: #d8cda6; box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.btn-call-ico { font-size: 1.5rem; line-height: 1; }
.btn-call-txt { display: flex; flex-direction: column; line-height: 1.25; }
.btn-call-txt small { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: .8; }
.btn-call-txt strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }
.boat-vhf {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 0.7rem 1.5rem; border: 1px solid rgba(199,187,144,.6); border-radius: 3px; color: #fff;
  background: rgba(20,32,60,.6); backdrop-filter: blur(6px);
}
.boat-vhf strong { color: var(--gold); }
.boat-vhf small { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: .8; }
.boat-vhf strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.boat-note { font-size: 0.82rem !important; color: rgba(255,255,255,.82) !important; margin-bottom: 0 !important; text-shadow: 0 1px 10px rgba(0,0,0,.5); }

/* ===== about ===== */
.about { max-width: var(--wrap); margin: 0 auto; padding: clamp(5rem,11vw,9rem) 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-media { overflow: hidden; border-radius: 3px; }
.about-media img { width: 100%; height: auto; display: block; }
.about-media figcaption { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.9rem; }
.about-quote { font-family: var(--serif); font-style: italic; font-size: 1.24rem; line-height: 1.5; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 1.3rem; margin: 1.8rem 0; }
.about-body h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 400; margin: .8rem 0 1.4rem; }
.about-body p { color: var(--muted); margin-bottom: 1.1rem; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--blue); margin-top: 1.6rem; }

/* ===== footer ===== */
.foot { background: var(--blue); color: rgba(255,255,255,.9); }
.foot-grid { max-width: var(--wrap); margin: 0 auto; padding: clamp(3rem,6vw,5rem) 1.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.foot-col h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 400; }
.foot-col p { font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,.82); }
.foot-col a:hover { color: #fff; border-bottom: 1px solid var(--gold); }
.foot-bar { border-top: 1px solid rgba(255,255,255,.16); padding: 1.6rem 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; max-width: var(--wrap); margin: 0 auto; }
.foot-mark { height: 26px; }
.foot-mark .brand-word { fill: var(--cream); font-size: 30px; }
.foot-credit { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255,255,255,.7); }
.foot-credit strong { color: #fff; font-weight: 500; }

/* ===== responsive ===== */
@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
/* con 7 voci + 3 lingue la barra orizzontale si affolla già sotto i 900px:
   il menu a comparsa parte da qui, non dai 720px */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column; gap: 0; background: var(--cream); padding: 6rem 2rem 2rem; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,.12); z-index: 55; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-burger { display: flex; }
  .nav-gallery { display: none; }
}
@media (max-width: 720px) {
  .tier-inner { gap: 0.9rem; font-size: 0.62rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .dish-name { font-size: 1.18rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta a { width: auto; }
}

/* ===== selettore servizio Pranzo / Cena ===== */
.menu-service { display: flex; justify-content: center; gap: 0; margin: 0 auto 2rem; border: 1px solid var(--line); border-radius: 999px; padding: 4px; width: fit-content; background: #fff; }
.svc-btn { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: .62em 1.9em; border-radius: 999px; transition: all .35s var(--ease); }
.svc-btn:hover { color: var(--blue); }
.svc-btn.on { background: var(--blue); color: var(--cream); }
.dish-group { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-dark, #a3966a); margin: 2rem 0 .6rem; letter-spacing: .02em; }
.dish-group:first-child { margin-top: 0; }

/* ritratto Antonio & Pedro su fondo bianco */
/* ritratto Antonio & Pedro — originale, nessun ritaglio né cornice */
.about-media { background: transparent; padding: 0; border: 0; border-radius: 0; overflow: visible; max-width: none; }
.about-media img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
.about-media figcaption { text-align: left; }

/* ===== finestra di prenotazione ===== */
.book-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(18,26,44,.72); backdrop-filter: blur(8px);
  padding: clamp(1rem, 4vh, 3rem) 1rem; overflow-y: auto;
}
.book-overlay.on { display: flex; align-items: flex-start; justify-content: center; animation: bookIn .35s var(--ease); }
@keyframes bookIn { from { opacity: 0; } to { opacity: 1; } }
.book-box {
  position: relative; width: min(1080px, 100%); margin: auto;
  display: grid; grid-template-columns: 340px 1fr;
  background: var(--cream); border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  animation: bookUp .45s var(--ease);
}
@keyframes bookUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.book-close {
  position: absolute; top: .7rem; right: .9rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.6rem; line-height: 1;
  color: var(--blue); background: rgba(255,255,255,.9); transition: all .3s;
}
.book-close:hover { background: var(--blue); color: var(--cream); transform: rotate(90deg); }

.book-aside { background: var(--blue); color: var(--cream); padding: 2.4rem 2rem; }
.book-mark { height: 26px; width: auto; margin-bottom: 1.8rem; fill: var(--cream); }
.book-mark .brand-word { font-family: var(--serif); font-size: 34px; font-weight: 600; letter-spacing: .16em; fill: var(--cream); }
.book-eyebrow { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.book-aside h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.book-aside h3 em { font-style: italic; color: var(--gold); }
.book-txt { font-size: .92rem; color: rgba(255,255,255,.82); margin-bottom: 1.8rem; }
.book-info { display: grid; gap: 1rem; border-top: 1px solid rgba(255,255,255,.18); padding-top: 1.5rem; }
.book-info dt { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.book-info dd { font-size: .93rem; color: rgba(255,255,255,.94); }
.book-info a { border-bottom: 1px solid rgba(199,187,144,.5); transition: border-color .3s; }
.book-info a:hover { border-color: var(--gold); }
.book-note { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 1.6rem; line-height: 1.5; }

.book-frame { position: relative; background: #fff; display: flex; flex-direction: column; min-height: 520px; }
.book-frame iframe { width: 100%; flex: 1; min-height: 470px; border: 0; opacity: 0; transition: opacity .5s var(--ease); }
.book-frame.ready iframe { opacity: 1; }
.book-fallback {
  display: block; text-align: center; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: .9rem; border-top: 1px solid var(--line); transition: color .3s;
}
.book-fallback:hover { color: var(--blue); }
.book-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 7px; pointer-events: none; transition: opacity .4s; }
.book-frame.ready .book-loading { opacity: 0; }
.book-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: bookDot 1.1s ease-in-out infinite; }
.book-loading span:nth-child(2) { animation-delay: .16s; }
.book-loading span:nth-child(3) { animation-delay: .32s; }
@keyframes bookDot { 0%,80%,100% { transform: scale(.6); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }

body.book-open { overflow: hidden; }

@media (max-width: 860px) {
  .book-box { grid-template-columns: 1fr; }
  .book-aside { padding: 2rem 1.5rem 1.6rem; }
  .book-aside h3 { font-size: 1.5rem; }
  .book-info { grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem; }
  .book-note { display: none; }
  .book-frame { min-height: 560px; }
  .book-frame iframe { min-height: 520px; }
}

/* rifiniture finestra prenotazione */
.book-aside h3 { font-size: 1.7rem; text-wrap: balance; }
.book-aside h3 em { white-space: nowrap; color: #d6caa0; }
.book-info dd { word-break: normal; overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .book-info { grid-template-columns: 1fr; gap: .85rem; }
  .book-info dd { font-size: .88rem; }
  .book-aside h3 { font-size: 1.45rem; }
}

/* altezza utile del modulo di prenotazione */
.book-frame { min-height: 640px; }
.book-frame iframe { min-height: 590px; }
@media (max-width: 860px) { .book-frame { min-height: 600px; } .book-frame iframe { min-height: 560px; } }

/* ===== Boat Delivery: foto in rotazione ===== */
.boat-media { position: absolute; inset: 0; }
.boat-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s var(--ease); }
.boat-slide.on { opacity: 1; }
.boat-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.boat-slide.on img { animation: boatZoom 10s var(--ease) forwards; }
@keyframes boatZoom { from { transform: scale(1.02); } to { transform: scale(1.09); } }
.boat-dots { position: absolute; bottom: 1.6rem; right: clamp(1.2rem, 4vw, 3rem); z-index: 3; display: flex; gap: 8px; }
.boat-dot { width: 30px; height: 3px; background: rgba(255,255,255,.35); border-radius: 2px; transition: background .4s; padding: 0; }
.boat-dot.on { background: var(--gold); }
.boat-dot:hover { background: rgba(255,255,255,.75); }
@media (max-width: 720px) {
  .boat-dots { bottom: 1rem; right: 1.2rem; }
  .boat-dot { width: 24px; }
}

/* ===== area di tocco su mobile ===== */
@media (max-width: 900px) {
  /* pallini dei caroselli: area cliccabile ampia, tratto invariato */
  .hero-dot, .boat-dot { position: relative; }
  .hero-dot::after, .boat-dot::after {
    content: ''; position: absolute; left: 0; right: 0;
    top: -14px; bottom: -14px;
  }
  /* link della barra superiore */
  .tier-inner a { padding: .78em .1em; display: inline-block; }
  .tier { padding-top: .1rem; padding-bottom: .1rem; }
}

/* ===== barra "I nostri mondi" — solo mobile ===== */
.worlds, .worlds-panel { display: none; }

@media (max-width: 900px) {
  /* la vecchia barra a due righe sparisce */
  .tier { display: none; }

  .worlds {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--gold); color: #2b3550;
    padding: .1rem 1.1rem .1rem 1.3rem;
    position: sticky; top: var(--nav-h, 58px); z-index: 45;
  }
  .worlds-label {
    font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  }
  .worlds-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 44px; height: 36px; align-items: flex-end; padding: 0;
  }
  .worlds-burger span {
    display: block; height: 2px; background: #2b3550; border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s, width .35s var(--ease);
  }
  .worlds-burger span:nth-child(1) { width: 22px; }
  .worlds-burger span:nth-child(2) { width: 16px; }
  .worlds-burger span:nth-child(3) { width: 22px; }
  .worlds-burger.on span:nth-child(1) { width: 22px; transform: translateY(6px) rotate(45deg); }
  .worlds-burger.on span:nth-child(2) { opacity: 0; }
  .worlds-burger.on span:nth-child(3) { width: 22px; transform: translateY(-6px) rotate(-45deg); }

  .worlds-panel {
    display: block; overflow: hidden; max-height: 0;
    background: #e0d5ab; transition: max-height .45s var(--ease);
    position: sticky; top: calc(var(--nav-h, 58px) + 36px); z-index: 44;
  }
  .worlds-panel.on { max-height: 260px; }
  .worlds-panel a {
    display: block; padding: .85rem 1.3rem;
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: #2b3550; border-top: 1px solid rgba(43,53,80,.14);
  }
  .worlds-panel a:first-child { border-top: 0; }
  .worlds-panel a:active { background: rgba(43,53,80,.08); }
}

/* ===== selettore lingua ===== */
.lang { display: flex; align-items: center; gap: .15rem; margin-right: .3rem; }
.lang a, .lang .lang-on {
  font-size: .68rem; letter-spacing: .12em; font-weight: 500;
  padding: .42em .55em; border-radius: 2px; line-height: 1;
  transition: color .3s, background .3s, opacity .3s;
}
.lang a { color: var(--muted); opacity: .8; }
.lang a:hover { color: var(--blue); opacity: 1; }
.lang .lang-on { color: var(--blue); background: rgba(48,76,137,.09); }
.nav.scrolled .lang a { color: var(--muted); }

@media (max-width: 720px) {
  .lang { margin-right: .1rem; }
  .lang a, .lang .lang-on { padding: .6em .5em; font-size: .66rem; }
}

/* ===== Boat Menu ===== */
.bmenu { background: #f4efe8; padding: clamp(4rem,9vw,7rem) 1.8rem; }
.bmenu-head { max-width: 780px; margin: 0 auto clamp(2.5rem,5vw,3.6rem); text-align: center; }
.bmenu-head h2 { font-size: clamp(2rem,4.8vw,3.1rem); font-weight: 400; margin: .8rem 0 1rem; }
.bmenu-lead { color: var(--muted); max-width: 56ch; margin: 0 auto; }
.bmenu-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
}
.bcard { background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 1.8rem 1.7rem; }
.bcard-title {
  font-family: var(--serif); font-size: 1.34rem; font-weight: 500; color: var(--blue);
  padding-bottom: .8rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem;
}
.bcard-note {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: -.6rem 0 1rem;
}
.bcard-list { list-style: none; display: grid; gap: .95rem; }
.bcard-list li { display: block; }
.bdish { display: block; font-family: var(--serif); font-size: 1.03rem; color: var(--ink); }
.bdesc { display: block; font-size: .84rem; color: var(--muted); margin-top: .18rem; line-height: 1.5; }
.bmenu-note {
  max-width: 1120px; margin: 2.6rem auto 0; text-align: center;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.bmenu-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
@media (max-width: 620px) {
  .bmenu { padding-left: 1.2rem; padding-right: 1.2rem; }
  .bmenu-grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .bcard { padding: 1.5rem 1.3rem; }
  .bmenu-actions .btn-solid, .bmenu-actions .btn-outline { width: 100%; text-align: center; }
}

/* navigazione compatta tra 900 e 1200px */
@media (min-width: 901px) and (max-width: 1200px) {
  .nav-links { gap: clamp(.7rem, 1.4vw, 1.1rem); }
  .nav-links a { font-size: .68rem; letter-spacing: .1em; white-space: nowrap; }
  .nav-actions { gap: .5rem; }
  .nav-cta { padding: .6em 1.1em; font-size: .68rem; }
}
@media (min-width: 901px) { .nav-links a { white-space: nowrap; } }

/* indirizzo del footer cliccabile verso Google Maps */
.foot-col a[href*="google.com/maps"] { color: inherit; border-bottom: 1px solid rgba(252,248,245,.28); transition: border-color .3s, color .3s; }
.foot-col a[href*="google.com/maps"]:hover { color: var(--gold); border-bottom-color: var(--gold); }
