/* ============================================================
   PIPPOFOOD — style.css
   Sfondo principale: Avorio/Giallo chiaro
   Accenti: Azzurro/Celeste + Oro
   Font: Playfair Display + Lato
   ============================================================ */

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

/* ---- TOKENS ---- */
:root {
  /* Sfondi avorio */
  --ivory:        #F3DA8C;   /* sfondo principale pagine — GIALLO ORO */
  --ivory-light:  #F7E6A8;   /* sezioni alternate più chiare — GIALLO ORO chiaro */
  --ivory-mid:    #E8C870;   /* bordi, separatori caldi          */
  --ivory-dark:   #C9A84C;   /* hover, accenti caldi (= gold)    */

  /* Azzurro / Celeste */
  --sky-light:    #DCE7F0;   /* sfondi sezioni azzurre chiare    */
  --sky:          #2A5F87;   /* azzurro medio (era celeste)      */
  --sky-dark:     #163E5C;   /* blu scuro (era celeste scuro)    */
  --ocean:        #134A6E;   /* blu notte principale (era turchese) */
  --ocean-deep:   #0A2E47;   /* blu notte profondo               */

  /* Oro */
  --gold:         #9C7A28;   /* accento oro scurito per contrasto su sfondo oro */
  --gold-dark:    #7A5E1C;   /* oro scuro                        */

  /* Testi */
  --ink:          #1E2A35;   /* testo principale                 */
  --ink-mid:      #3D4E5C;   /* testo secondario                 */
  --ink-light:    #607080;   /* testo terziario                  */

  /* Borders */
  --border:       #DDD0A0;   /* bordi caldi                      */
  --border-blue:  #A9C2D6;   /* bordi freddi                     */

  --white:        #FFFFFF;

  --font-d: 'Playfair Display', Georgia, serif;
  --font-dish: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Lato', system-ui, sans-serif;

  --radius:   4px;
  --shadow:   0 4px 24px rgba(26,111,168,.10);
  --shadow-w: 0 4px 20px rgba(201,168,76,.18);
  --shadow-l: 0 12px 48px rgba(26,111,168,.18);
  --ease:     0.30s cubic-bezier(.4,0,.2,1);
  --ease-b:   0.55s cubic-bezier(.16,1,.3,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }
.t-c { text-align: center; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2.5rem);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-left.on, .reveal-right.on { opacity: 1; transform: none; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky); margin-bottom: .8rem;
}
.eyebrow-gold { color: var(--gold); }

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.12; letter-spacing: -.015em;
}
.section-title.light { color: var(--ivory); }

.section-divider {
  display: flex; align-items: center; gap: .9rem;
  margin: 1.1rem 0 1.6rem;
}
.section-divider.center { justify-content: center; }
.div-line {
  flex: 1; max-width: 70px;
  height: 1px; background: var(--gold); opacity: .55;
}
.div-diamond { color: var(--gold); font-size: .6rem; }

.section-lead {
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  font-weight: 300; color: var(--ink-mid); line-height: 1.78;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .88rem 2.4rem;
  font-family: var(--font-b); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--ease); white-space: nowrap; text-decoration: none;
  border-radius: 0;
}
.btn-ocean {
  background: var(--ocean); color: var(--white); border-color: var(--ocean);
}
.btn-ocean:hover {
  background: var(--ocean-deep); border-color: var(--ocean-deep);
  transform: translateY(-2px); box-shadow: var(--shadow-l);
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-w);
}
.btn-outline-ocean {
  background: transparent; color: var(--ocean); border-color: var(--ocean);
}
.btn-outline-ocean:hover {
  background: var(--ocean); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-ivory {
  background: transparent; color: var(--ivory); border-color: rgba(251,245,224,.65);
}
.btn-outline-ivory:hover {
  background: rgba(251,245,224,.12); border-color: var(--ivory);
}
.btn-outline-gold {
  background: transparent; color: var(--gold-dark); border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--white); transform: translateY(-2px);
}

/* ============================================================
   LOADER — Icona ferma + piccolo arco che ruota lentissimo
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ocean-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }

.ld-inner { text-align: center; }

/* Contenitore icona + anello SVG */
.ld-ring-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icona logo ferma, leggero respiro */
.ld-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
  animation: ld-breathe 3.6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes ld-breathe {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

/* Anello SVG: piccolo arco fisso che ruota lentissimo (mai un giro percepibile) */
.ld-ring {
  position: absolute;
  inset: 0;
  width: 92px;
  height: 92px;
  animation: ld-rotate 18s linear infinite;
}
.ld-ring circle {
  fill: none;
  stroke-width: 1.6;
}
.ld-ring .ld-ring-bg {
  stroke: rgba(255,255,255,.10);
}
.ld-ring .ld-ring-fg {
  stroke: var(--gold);
  stroke-linecap: round;
  /* Arco corto e fisso (non si traccia/ritraccia): solo ~18% della circonferenza */
  stroke-dasharray: 48 216;
}
@keyframes ld-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ld-brand {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 600;
  color: var(--ivory); letter-spacing: .15em; margin: .2rem 0 .4rem;
}
.ld-tagline {
  font-family: var(--font-b); font-size: .68rem; font-weight: 400;
  color: rgba(255,255,255,.45); letter-spacing: .22em; text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
#header.solid {
  background: rgba(251,245,224,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,111,168,.10);
  border-bottom: 1px solid var(--border);
}
/* Header dark variant (for pages with dark hero) */
#header.header-dark-hero { background: transparent; }
#header.header-dark-hero.solid {
  background: rgba(251,245,224,.97);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
  max-width: 1400px; margin: 0 auto;
}

.logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-d); font-size: 1.55rem; font-weight: 700;
  color: var(--ivory); letter-spacing: .02em; text-decoration: none;
  transition: color var(--ease);
}
.logo-icon { font-size: 1.3rem; }
#header.solid .logo { color: var(--ocean); }

.nav-links-wrap { display: flex; align-items: center; gap: 2.2rem; }
.nav-links-wrap a {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  position: relative; padding-bottom: 4px;
  transition: color var(--ease);
}
.nav-links-wrap a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--ease);
}
.nav-links-wrap a:hover,
.nav-links-wrap a.active { color: var(--white); }
.nav-links-wrap a:hover::after,
.nav-links-wrap a.active::after { width: 100%; }
/* When header is solid */
#header.solid .nav-links-wrap a { color: var(--ink-mid); }
#header.solid .nav-links-wrap a:hover,
#header.solid .nav-links-wrap a.active { color: var(--ocean); }

.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: .55rem 1.4rem;
  font-size: .72rem !important; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--ease);
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--ease);
}
#header.solid .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobileNav {
  position: fixed; inset: 76px 0 0 0; z-index: 190;
  background: var(--ivory);
  flex-direction: column;
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
  display: none;
  box-shadow: 0 8px 32px rgba(26,111,168,.15);
}
#mobileNav.open { display: flex; }
#mobileNav a {
  font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mid);
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
#mobileNav a:last-child { border-bottom: none; }
#mobileNav a:hover { color: var(--ocean); }
#mobileNav a.active { color: var(--ocean); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  background: linear-gradient(150deg, var(--ocean-deep) 0%, var(--ocean) 55%, var(--sky-dark) 100%);
  padding: 120px clamp(1.2rem,5vw,2.5rem) 80px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,30,50,.82) 0%, rgba(8,30,50,.45) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2; color: var(--white); max-width: 700px;
}
.page-hero-content .eyebrow { color: var(--ivory-dark); }
.page-hero-content h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.page-hero-content h1 em {
  font-style: italic; font-weight: 400; color: var(--ivory-dark);
}
.page-hero-content p { color: rgba(255,255,255,.72); font-size: 1rem; }
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .9rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .4; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.sec-ivory  { background: var(--ivory); }
.sec-cream  { background: var(--ivory-light); }
.sec-sky    { background: var(--sky-light); }
.sec-ocean  { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean)); }
.sec-dark   { background: var(--ink); }

.sec-pad    { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ============================================================
   HERO SLIDER (home)
   ============================================================ */
.hero-slider {
  position: relative; height: 100svh; min-height: 600px; overflow: hidden;
}
.slides-wrap { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 9s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-bg-1 { background: linear-gradient(145deg, #061828 0%, var(--ocean-deep) 40%, var(--ocean) 75%, var(--sky-dark) 100%); }
.slide-bg-2 { background: linear-gradient(145deg, #1a0800 0%, #5c2200 40%, #9a4200 75%, #c86800 100%); }
.slide-bg-3 { background: linear-gradient(145deg, #041210 0%, #0a2e20 40%, #12502e 75%, #1c7040 100%); }

.slide-ov {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,18,28,.85) 0%,
    rgba(8,18,28,.5)  50%,
    rgba(8,18,28,.15) 100%
  );
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(2rem, 9vw, 9rem);
  max-width: 820px;
}

.s-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
  opacity: 0;
}
.slide.active .s-eyebrow { animation: s-up .7s ease .3s forwards; }

.s-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.03; letter-spacing: -.025em; margin-bottom: 1.2rem;
  opacity: 0;
}
.s-title em { font-style: italic; font-weight: 400; color: var(--ivory-dark); }
.slide.active .s-title { animation: s-up .85s ease .5s forwards; }

.s-sub {
  font-size: clamp(.95rem, 1.7vw, 1.15rem); font-weight: 300;
  color: rgba(255,255,255,.75); max-width: 520px; line-height: 1.75;
  margin-bottom: 2.4rem; opacity: 0;
}
.slide.active .s-sub { animation: s-up .85s ease .7s forwards; }

.s-actions { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; }
.slide.active .s-actions { animation: s-up .85s ease .9s forwards; }

@keyframes s-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Slider controls */
.sl-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 54px; height: 54px;
  background: rgba(251,245,224,.12);
  border: 1px solid rgba(251,245,224,.25);
  color: var(--ivory); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.sl-arrow:hover { background: var(--gold); border-color: var(--gold); }
.sl-prev { left: clamp(1rem, 3vw, 2.5rem); }
.sl-next { right: clamp(1rem, 3vw, 2.5rem); }

.sl-dots {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: .6rem;
}
.sdot {
  width: 28px; height: 2px; border-radius: 1px;
  background: rgba(255,255,255,.3); border: none;
  cursor: pointer; transition: var(--ease); padding: 0;
}
.sdot.active { background: var(--gold); width: 50px; }

.scroll-hint {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 10;
}
.sc-line {
  display: block; width: 1px; height: 52px; margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(251,245,224,.55));
  animation: sc-pulse 2s ease-in-out infinite;
}
@keyframes sc-pulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.5)} }

/* Hero bottom wave into ivory */
.hero-wave-bottom {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0; pointer-events: none; z-index: 5;
}
.hero-wave-bottom svg { width: 100%; display: block; }

/* ============================================================
   SHOWCASE STRIP — Frasi in dissolvenza lenta (ex marquee)
   ============================================================ */
.showcase-strip {
  background: linear-gradient(120deg, var(--ocean-deep), var(--ocean));
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.showcase-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2.5rem);
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1.1s ease, transform 1.1s ease;
  text-align: center;
  white-space: nowrap;
}
.showcase-item.active {
  opacity: 1;
  transform: translateY(0);
}
.showcase-item .ico {
  color: var(--gold);
  flex-shrink: 0;
  width: .95em; height: .95em;
}
.showcase-item span.txt {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.showcase-dots {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
}
.showcase-dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .4s ease, transform .4s ease;
}
.showcase-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
}
@media (max-width: 640px) {
  .showcase-item span.txt { font-size: .68rem; letter-spacing: .08em; white-space: normal; }
  .showcase-inner { height: 40px; }
}

/* ============================================================
   ABOUT STRIP (home preview)
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem); align-items: center;
}
.about-img-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px; gap: .8rem;
  position: relative;
}
.aim { border-radius: var(--radius); overflow: hidden; position: relative; }
.aim-large { grid-row: span 2; }
.aim-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2rem,7vw,4rem);
  transition: transform var(--ease);
}
.aim:hover .aim-bg { transform: scale(1.04); }
.ab-1 { background: linear-gradient(145deg, var(--ocean-deep), var(--ocean), var(--sky)); }
.ab-2 { background: linear-gradient(145deg, #3d1f00, #8a4000, #c07000); }
.ab-3 { background: linear-gradient(145deg, #1a3a1a, #2d6a2d, #4a9a4a); }
.ab-4 { background: linear-gradient(145deg, #1a1a3a, #2a2a8a, #4040c0); }

.about-float {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  background: var(--ocean); color: var(--white);
  padding: 1.2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-l); z-index: 2;
}
.af-num {
  font-family: var(--font-d); font-size: 2.2rem; font-weight: 700;
  color: var(--ivory-dark); display: block; line-height: 1;
}
.af-lbl {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-top: .2rem;
}

.about-text .eyebrow { margin-bottom: .6rem; }
.about-text h2 { color: var(--ink); margin-bottom: 1.1rem; }
.about-text p  { color: var(--ink-mid); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.about-text strong { color: var(--ocean); }
.about-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1.4rem 0;
}
.a-check {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700; color: var(--ink-mid);
}
.a-check::before {
  content: '✓'; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--sky-light); color: var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900;
}

/* ============================================================
   STRENGTHS CARDS
   ============================================================ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.str-card {
  background: #FBF5E0;
  border: 1px solid var(--ivory-mid);
  border-top: 3px solid var(--gold-dark);
  padding: 2.2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: var(--ease);
  box-shadow: 0 6px 22px rgba(122, 94, 28, .16);
}
.str-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(122, 94, 28, .26);
}
.str-ico {
  width: 56px; height: 56px;
  background: var(--sky-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.3rem;
  transition: background var(--ease), transform var(--ease);
}
.str-card:hover .str-ico { background: var(--ivory-dark); transform: scale(1.08) rotate(-4deg); }
.str-card h3 {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 600;
  color: var(--ink); margin-bottom: .45rem;
}
.str-card p { font-size: .88rem; color: var(--ink-light); line-height: 1.65; }
.str-card .stamp {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--sky-light); border: 1px solid var(--border-blue);
  color: var(--ocean); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .75rem; margin-top: .8rem;
}

/* ============================================================
   MENU ITEMS
   ============================================================ */
.menu-section-wrap {
  background: var(--ivory);
}
.menu-cols {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; max-width: 1180px; margin: 0 auto;
}
.menu-col {
  padding: 2.5rem clamp(1.5rem,3vw,2.5rem);
  border-right: 1px solid var(--border);
}
.menu-col:last-child { border-right: none; }
.mc-title {
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 600;
  color: var(--ink); margin-bottom: .3rem;
  display: flex; align-items: center; gap: .5rem;
}
.mc-note {
  font-size: .74rem; font-weight: 300; color: var(--ink-light);
  font-style: italic; letter-spacing: .03em;
  margin-bottom: 1.6rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.m-list { display: flex; flex-direction: column; gap: 0; }
.m-item { padding: .85rem 0; border-bottom: 1px solid var(--border); }
.m-item:last-child { border-bottom: none; }
.m-item-row {
  display: flex; align-items: baseline; gap: .4rem; margin-bottom: .15rem;
}
.m-name {
  font-family: var(--font-d); font-size: .98rem; font-weight: 600;
  color: var(--ink); white-space: nowrap;
}
.m-dots {
  flex: 1; border-bottom: 1px dotted var(--border); margin-bottom: 3px;
  min-width: 20px;
}
.m-price {
  font-family: var(--font-d); font-size: .98rem; font-weight: 600;
  color: var(--ocean); white-space: nowrap;
}
.m-desc { font-size: .79rem; font-weight: 300; color: var(--ink-light); line-height: 1.5; }
.m-badges { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .3rem; }
.mbadge {
  font-size: .65rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .15rem .55rem;
  border: 1px solid;
}
.mb-v { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.mb-p { background: #fff1f2; color: #9f1239; border-color: #fecdd3; }
.mb-g { background: var(--sky-light); color: var(--ocean); border-color: var(--border-blue); }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-filter {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.gf {
  padding: .48rem 1.4rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--ink-light);
  border: 1px solid var(--border); cursor: pointer;
  transition: var(--ease);
}
.gf.active, .gf:hover {
  background: var(--ocean); color: var(--white); border-color: var(--ocean);
}
.gal-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem;
}
.gal-item {
  aspect-ratio: 4/3; position: relative; overflow: hidden; cursor: pointer;
}
.gal-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2.5rem,8vw,4.5rem);
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
/* Use real photos: <img src="img/photo.jpg"> inside .gal-bg */
.gal-item:hover .gal-bg { transform: scale(1.07); }
.gb-1{background:linear-gradient(145deg,var(--ocean-deep),var(--ocean),var(--sky))}
.gb-2{background:linear-gradient(145deg,#3d1f00,#7c3f00,#b86000)}
.gb-3{background:linear-gradient(145deg,#1a3a1a,#2d6a2d,#4a9a4a)}
.gb-4{background:linear-gradient(145deg,#1a0a3a,#3a1a7a,#5a2ab0)}
.gb-5{background:linear-gradient(145deg,#051520,#0a3040,#0f4a60)}
.gb-6{background:linear-gradient(145deg,#3d0000,#7c1f00,#c04020)}
.gb-7{background:linear-gradient(145deg,#1a1a00,#4a4a00,#8a8a00)}
.gb-8{background:linear-gradient(145deg,#001a3d,#003080,#0050c0)}
.gb-9{background:linear-gradient(145deg,#1a0a00,#4a2000,#8a5000)}
.gal-bg span{opacity:.28}
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(13,74,114,.78);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease);
  flex-direction: column; gap: .4rem;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov-icon { font-size: 1.6rem; color: var(--white); }
.gal-ov-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-bd {
  position: absolute; inset: 0;
  background: rgba(8,20,34,.94); backdrop-filter: blur(6px);
}
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  width: 42px; height: 42px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lb-close:hover { background: var(--gold); border-color: var(--gold); }
.lb-nav {
  position: relative; z-index: 2; flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lb-nav:hover { background: var(--gold); border-color: var(--gold); }
.lb-stage { position: relative; z-index: 2; flex: 1; max-width: 840px; padding: 0 1rem; }
.lb-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lb-cap { text-align: center; color: rgba(255,255,255,.55); font-size: .85rem; font-family: var(--font-d); font-style: italic; margin-top: .8rem; }

/* ============================================================
   RESERVATIONS (form)
   ============================================================ */
.res-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem,6vw,5rem); align-items: start;
}
.res-info .section-title { color: var(--ink); }
.res-info > p { color: var(--ink-mid); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.res-detail {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem;
}
.rd-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--sky-light); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background var(--ease);
}
.res-detail:hover .rd-ico { background: var(--ocean); }
.rd-text strong {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: .15rem;
}
.rd-text span, .rd-text a { font-size: .9rem; color: var(--ink-mid); line-height: 1.6; }
.rd-text a:hover { color: var(--ocean); }
.rd-text em { font-style: italic; color: var(--ink-light); }

/* Hours in reservations */
.res-hours {
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem; margin-top: 1.8rem;
}
.res-hours h4 {
  font-family: var(--font-d); font-size: 1rem; font-weight: 600;
  color: var(--ink); margin-bottom: .75rem;
}
.rh-row {
  display: flex; justify-content: space-between;
  padding: .4rem 0; border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.rh-row:last-child { border-bottom: none; }
.rh-day  { font-weight: 700; color: var(--ink-mid); }
.rh-time { color: var(--ink-light); }
.rh-row.closed { opacity: .4; }

/* Form box */
.res-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ocean);
  padding: clamp(1.5rem,4vw,2.5rem);
  box-shadow: var(--shadow);
}
.res-form-box h3 {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 600;
  color: var(--ink); margin-bottom: 1.6rem;
}
.rf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.rf-full  { margin-bottom: 1rem; }
.rf-group label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: .38rem;
}
.rf-group input,
.rf-group select,
.rf-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--ivory-light);
  border: 1px solid var(--border);
  color: var(--ink); font-family: var(--font-b); font-size: .9rem;
  outline: none; transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none; border-radius: 0;
}
.rf-group input:focus,
.rf-group select:focus,
.rf-group textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,111,168,.08);
}
.rf-group textarea { resize: vertical; min-height: 100px; }
.rf-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.rf-ok {
  display: none; text-align: center; padding: 2rem 1rem;
}
.rf-ok-ico { font-size: 3rem; display: block; margin-bottom: .6rem; }
.rf-ok h4  { font-family: var(--font-d); font-size: 1.4rem; color: var(--ocean); margin-bottom: .4rem; }
.rf-ok p   { color: var(--ink-light); font-size: .9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--ivory-light); }
.testi-wrap    { max-width: 820px; margin: 0 auto; }
.testi-item    { display: none; text-align: center; padding: 0 clamp(1rem,4vw,2.5rem); }
.testi-item.on { display: block; animation: fade-t .5s ease; }
@keyframes fade-t { from{opacity:0} to{opacity:1} }
.testi-q {
  font-family: var(--font-d); font-size: 5rem; line-height: .4;
  color: var(--gold); opacity: .5; margin-bottom: .5rem;
}
.testi-text {
  font-family: var(--font-d); font-style: italic;
  font-size: clamp(1.05rem,2vw,1.3rem);
  color: var(--ink); line-height: 1.72; margin-bottom: 1.8rem;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-bottom: .8rem; }
.t-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .88rem; color: var(--white); flex-shrink: 0;
}
.tav-1 { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); }
.tav-2 { background: linear-gradient(135deg,var(--ocean),var(--ocean-deep)); }
.tav-3 { background: linear-gradient(135deg,#059669,#047857); }
.testi-author strong { display: block; color: var(--ink); font-size: .95rem; }
.testi-author span   { font-size: .78rem; color: var(--ink-light); }
.testi-stars { color: var(--gold); letter-spacing: .08em; font-size: 1rem; }
.testi-ctrl {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.t-btn {
  width: 42px; height: 42px; background: transparent;
  border: 1px solid var(--border); color: var(--ink-mid);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--ease);
}
.t-btn:hover { background: var(--ocean); border-color: var(--ocean); color: var(--white); }
.t-dots { display: flex; gap: .5rem; }
.tdot {
  width: 26px; height: 2px; border-radius: 1px;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--ease); padding: 0;
}
.tdot.on { background: var(--gold); width: 42px; }

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.para-div {
  position: relative; overflow: hidden;
  min-height: clamp(220px, 35vw, 420px);
  display: flex; align-items: center; justify-content: center;
}
.para-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.pd-bg-1 { background: linear-gradient(135deg,var(--ocean-deep),var(--ocean),var(--sky-dark)); }
.pd-bg-2 { background: linear-gradient(135deg,#0a2010,#144020,#1e6030); }
.para-ov {
  position: absolute; inset: 0;
  background: rgba(8,20,34,.62);
}
.para-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem clamp(1.5rem,5vw,4rem); color: var(--white);
}
.para-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ivory-dark);
  display: block; margin-bottom: .9rem;
}
.para-title {
  font-family: var(--font-d);
  font-size: clamp(2rem,5vw,3.8rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.015em;
}
.para-title em { font-style: italic; font-weight: 400; color: var(--ivory-dark); }
.para-content p { color: rgba(255,255,255,.65); margin: .7rem 0 1.5rem; font-size: .98rem; }

/* ============================================================
   NUMBERS STRIP
   ============================================================ */
.nums-strip {
  background: var(--ocean);
  padding: clamp(2.5rem,6vw,4.5rem) 0;
}
.nums-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 0; text-align: center; max-width: 1180px; margin: 0 auto;
}
.num-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.num-item:last-child { border-right: none; }
.num-val {
  font-family: var(--font-d);
  font-size: clamp(2.8rem,6vw,4.2rem); font-weight: 700;
  color: var(--ivory-dark); line-height: 1; display: block;
}
.num-lbl {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-top: .4rem; display: block;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg,var(--ocean-deep),var(--ocean));
  padding: clamp(3.5rem,8vw,6rem) 0; text-align: center;
}
.cta-band .eyebrow { color: var(--ivory-dark); }
.cta-band .section-title { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,6vw,5rem); align-items: start;
}
.map-box {
  aspect-ratio: 4/3;
  background: var(--sky-light);
  border: 1px solid var(--border-blue);
  border-top: 3px solid var(--sky);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: .7rem; padding: 2rem;
}
.map-box .map-ico { font-size: 3.5rem; }
.map-box h3 { font-family: var(--font-d); font-size: 1.3rem; color: var(--ink); }
.map-box p  { font-size: .88rem; color: var(--ink-light); max-width: 240px; }
.map-box a  { color: var(--ocean); font-size: .9rem; font-weight: 700; }
.map-note   { font-size: .72rem; color: var(--ink-light); opacity: .5; font-style: italic; margin-top: .3rem; }

.contact-info .section-title { color: var(--ink); }
.ca-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .8rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--ink-mid);
}
.ca-item:last-of-type { border-bottom: none; }
.ca-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sky-light); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: background var(--ease);
}
.ca-item:hover .ca-ico { background: var(--ocean); }
.ca-item strong {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: .15rem;
}
.ca-item a:hover { color: var(--ocean); }
.c-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.cs-btn {
  width: 38px; height: 38px; background: transparent;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; color: var(--ink-light);
  text-transform: uppercase; transition: var(--ease);
}
.cs-btn:hover { background: var(--ocean); border-color: var(--ocean); color: var(--white); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer;
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--ocean); }
.faq-ico { font-size: 1.3rem; color: var(--gold); transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  display: none; padding-bottom: 1.1rem;
  font-size: .9rem; color: var(--ink-mid); line-height: 1.72;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
}
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: clamp(2.5rem,6vw,4.5rem) clamp(1.2rem,5vw,2.5rem);
  max-width: 1180px; margin: 0 auto;
}
.ft-logo {
  font-family: var(--font-d); font-size: 1.55rem; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.ft-brand p {
  font-size: .85rem; font-weight: 300;
  color: rgba(255,255,255,.42); line-height: 1.75; max-width: 260px;
}
.ft-soc { display: flex; gap: .5rem; margin-top: 1.2rem; }
.ft-soc a {
  width: 36px; height: 36px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; color: rgba(255,255,255,.5);
  transition: var(--ease);
}
.ft-soc a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.ft-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.ft-col ul li { margin-bottom: .5rem; }
.ft-col ul li a { font-size: .85rem; color: rgba(255,255,255,.42); transition: color var(--ease); }
.ft-col ul li a:hover { color: var(--sky); }
.ft-col address { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.85; }
.ft-col address a:hover { color: var(--sky); }
.ft-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem clamp(1.2rem,5vw,2.5rem);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.25);
  flex-wrap: wrap; gap: .5rem;
  max-width: 1180px; margin: 0 auto;
}
.ft-bar a { color: rgba(255,255,255,.32); }
.ft-bar a:hover { color: var(--sky); }

/* Back to top */
.btt {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 100;
  width: 46px; height: 46px; background: var(--gold);
  color: var(--white); border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: var(--ease); box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.btt.show { opacity: 1; visibility: visible; }
.btt:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .menu-cols { grid-template-columns: 1fr; }
  .menu-col  { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .menu-col:last-child { border-bottom: none; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links-wrap { display: none; }
  .burger         { display: flex; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-img-mosaic { display: none; }
  .res-wrap       { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .nums-grid      > .num-item:nth-child(n+4) { display: none; }
}
@media (max-width: 640px) {
  .s-actions { flex-direction: column; align-items: flex-start; }
  .s-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .gal-grid       { grid-template-columns: repeat(2,1fr); }
  .rf-row2        { grid-template-columns: 1fr; }
  .ft-top         { grid-template-columns: 1fr; }
  .ft-bar         { flex-direction: column; text-align: center; }
  .about-checks   { grid-template-columns: 1fr; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .nums-grid > .num-item:nth-child(n+3) { display: none; }
}
@media (max-width: 400px) {
  .gal-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ============================================================
   ICONE SVG ELEGANTI (sostituiscono le emoji)
   Stile: linea sottile (outline), stroke 1.5, no riempimento
   ============================================================ */
.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-lg { width: 1.8em; height: 1.8em; }
.ico-xl { width: 2.4em; height: 2.4em; }

/* Quando l'icona sta in un cerchio/box colorato (es. .str-ico, .cc-icon, .rd-ico) */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-box .ico { width: 1.5em; height: 1.5em; stroke-width: 1.4; }

/* ============================================================
   MENU PAGE — Section photo banner (foto nelle intestazioni)
   ============================================================ */
.msh-photo-wrap {
  position: relative;
  width: 100%;
  height: clamp(120px, 22vw, 200px);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 28px rgba(26,111,168,.14);
}
.msh-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.menu-section:hover .msh-photo-wrap img,
.msh-photo-wrap:hover img { transform: scale(1.05); }

.msh-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,74,114,.78) 0%,
    rgba(13,74,114,.35) 55%,
    rgba(13,74,114,.05) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
}
.msh-photo-overlay .icon-box {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  margin-right: 1.1rem;
  color: var(--white);
}
.msh-photo-overlay .msh-text-light .msh-title {
  color: var(--white);
  font-style: italic;
}
.msh-photo-overlay .msh-text-light .msh-subtitle {
  color: rgba(255,255,255,.78);
}

/* Versione senza foto (fallback elegante a sfondo colore) */
.msh-photo-wrap.no-photo {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean), var(--sky-dark));
}
.msh-photo-wrap.no-photo .msh-photo-overlay {
  background: none;
}

@media (max-width: 600px) {
  .msh-photo-wrap { height: 130px; }
  .msh-photo-overlay .icon-box { width: 42px; height: 42px; margin-right: .8rem; }
}
