:root {
  --color-primary: #004c97;
  --color-primary-dark: #003a75;
  --color-text: #3a3a3a;
  --color-white: #ffffff;
  --font-title: 'Quicksand', sans-serif;
  --font-body: 'Encode Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 300;
  color: var(--color-primary);
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

/* ===================================================
   FULLSCREEN MENU OVERLAY
   =================================================== */
.fullscreen-menu-container {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background-color: var(--color-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
}
.fullscreen-menu-container.is-open {
  transform: translateX(0);
}

/* Menu header: logo + close button */
.menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  position: relative;
}
.close-menu {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.close-menu::before,
.close-menu::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: white;
  top: 50%;
  left: 5px;
}
.close-menu::before { transform: rotate(45deg); }
.close-menu::after  { transform: rotate(-45deg); }

/* Pre-menu: lang switcher + prenota */
.pre-menu { padding: 0 40px 20px; }
.side-langs { margin: 0; padding: 0; list-style: none; }
.side-langs dt { margin: 2px 0; }
.side-langs a {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}
.side-langs a:hover,
.side-langs a.link_attivo { color: white; }

.side-booking {
  color: white;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.side-booking:hover { opacity: 0.7; color: white; }

/* Nav list */
.fullscreen-list {
  list-style: none;
  padding: 10px 40px;
  margin: 0;
}
.fullscreen-list li { border-bottom: 1px solid rgba(255,255,255,0.15); }
.fullscreen-list li:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.fullscreen-list a {
  display: block;
  color: white;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  padding: 12px 0;
  transition: padding-left 0.2s, opacity 0.2s;
}
.fullscreen-list a:hover { padding-left: 10px; opacity: 0.8; color: white; }

/* Menu footer: CTAs + social */
.menu-footer { padding: 20px 40px 40px; }

.btn-second {
  display: inline-block;
  border: 1px solid white;
  color: white;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 3px;
  text-align: center;
  width: 100%;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-second:hover { background: white; color: var(--color-primary); }

.socials a { display: inline-block; margin: 0 8px; }
.socials img { transition: opacity 0.2s; }
.socials a:hover img { opacity: 0.7; }

/* ===================================================
   PERSISTENT TOP BAR (#include_top_menu)
   =================================================== */
#include_top_menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 0;
  pointer-events: none;
}

/* Logo sinistra → home */
.top-logo-home {
  pointer-events: all;
  flex-shrink: 0;
}
.top-logo-home img {
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.45));
}
.top-home-link { display: block; }

/* Lingue centrate (absolute per non distorcere lo space-between) */
.top-lang-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: all;
}
.top-lang-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 14px;
}
.top-lang-list li a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.top-lang-list li a:hover,
.top-lang-list li a.link_attivo { color: white; font-weight: 600; }

/* Destra: booking + hamburger */
.mobile-menu {
  pointer-events: all;
  flex-shrink: 0;
}
.mobile-menu dl {
  display: flex; align-items: center; gap: 10px;
  margin: 0; padding: 0;
}
.mobile-menu dt { margin: 0; padding: 0; }

.mobile-menu > dl > dt:first-child > a {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.2);
  padding: 6px 14px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.mobile-menu > dl > dt:first-child > a:hover {
  background: rgba(0,76,151,0.85);
  color: white;
}
.mobile-menu img { width: 16px; height: 16px; }

.mobile-menu .dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 180px;
}
.mobile-menu .dropdown-item {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 8px 16px;
  transition: background 0.2s;
}
.mobile-menu .dropdown-item:hover { background: #f5f5f5; color: var(--color-primary); }
.mobile-menu .dropdown-item i { color: var(--color-primary); }

/* Hamburger toggle button */
#toggle_fullscreen_menu {
  display: block;
  width: 34px;
  height: 26px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  pointer-events: all;
  -webkit-tap-highlight-color: transparent;
}
#toggle_fullscreen_menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
#toggle_fullscreen_menu span:nth-child(1) { top: 0; }
#toggle_fullscreen_menu span:nth-child(2) { top: 11px; }
#toggle_fullscreen_menu span:nth-child(3) { top: 22px; }

/* ===================================================
   PAGE STRUCTURE
   =================================================== */
.close-menu-container { position: relative; }

/*
  CSS Grid trick: slider + nav overlay on the same grid cell.
  Slider fills the cell, nav aligns to its bottom — no HTML changes.
*/
.main-header {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.main-header > .opt-box-one.fullscreen-slider {
  grid-row: 1;
  grid-column: 1;
}
.main-header > .top-support-menu {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  z-index: 11;
}

.opt-box-one.fullscreen-slider,
#fullscreen_slider_one {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #004c97;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-bg figure { margin: 0; width: 100%; height: 100%; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.main-footer {
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
}
.b-padding-xxl { padding-bottom: 5.5rem; }
.t-padding-xxl { padding-top: 5.5rem; }
.footer-brand { margin-bottom: 1rem; max-width: 100px; }
.main-footer p { font-size: 0.85rem; color: var(--color-text); line-height: 1.7; }
.main-footer a { color: var(--color-primary); }

.footer-brands {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 15px; flex-wrap: wrap;
}
.footer-brands img { max-height: 40px; }
.smaller { font-size: 0.8rem; }

.footer-menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0 15px;
}
.footer-menu dt { margin: 0; }
.footer-menu a { color: #666; font-size: 0.8rem; transition: color 0.2s; }
.footer-menu a:hover { color: var(--color-primary); }

.kumbe-link { color: #999; font-size: 0.75rem; }
.kumbe-link span { color: var(--color-primary); }
.main-footer hr { border-color: #e8e8e8; margin: 0; }

/* ===================================================
   UTILITIES
   =================================================== */
.fa-margin-r { margin-right: 6px; }
.opt-box-one { width: 100%; }

/* ===================================================
   FULLSCREEN SLIDER — multi-image crossfade
   =================================================== */
.hero-bg {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}
.hero-bg.active {
  opacity: 1;
  z-index: 2;
}

/* ===================================================
   FULLSCREEN SLIDER CONTENT — logo centrato nell'hero
   =================================================== */
.fullscreen-slider-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fullscreen-slider-content .container { pointer-events: all; }

.header-logo {
  max-width: clamp(200px, 45vw, 520px);
  width: 100%;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}

/* Titolo pagina sovrimpresso sulla foto hero (pagine interne) */
.hero-page-title {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.hero-page-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 3px;
  background: var(--color-primary);
  margin: 0.6rem auto 0;
}

/* ===================================================
   TOP SUPPORT MENU — nav sovrapposta all'hero con pallini
   =================================================== */
.top-support-menu {
  /* Posizionata nel grid cell (align-self: end) — vedi .main-header grid */
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(3px);
  padding: 0;
}
.top-support-menu dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0; padding: 0;
  list-style: none;
}
.top-support-menu dt {
  margin: 0;
}
.top-support-menu dt a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 20px 14px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  gap: 6px;
}
/* Pallino blu sopra la scritta */
.top-support-menu dt a::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.top-support-menu dt a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}
.top-support-menu dt a:hover::before {
  transform: scale(1.4);
  background: white;
}

/* Hero background fallback (no image) */
#fullscreen_slider_one { background: linear-gradient(135deg, #004c97 0%, #003a75 100%); }

/* ===================================================
   CONTENT SECTIONS — sezioni fullscreen con foto
   =================================================== */
.fullscreen-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #222;
}
.fullscreen-container .section-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.fullscreen-container .section-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.55);
}
.fullscreen-desc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 0;
  color: white;
  z-index: 5;
}
.fullscreen-desc h3 {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  margin-bottom: 0.75rem;
}
.fullscreen-desc .lead {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.fullscreen-desc .side-line {
  border-left: 3px solid rgba(255,255,255,0.5);
  padding-left: 16px;
  margin-bottom: 1.5rem;
  display: block;
}

/* Buttons */
.btn-third {
  display: inline-block;
  border: 1px solid white;
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 10px;
  margin-bottom: 8px;
}
.btn-third:hover { background: white; color: var(--color-primary); }
.btn-third.no-border { border-color: rgba(255,255,255,0.6); }
.btn-default {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1px solid var(--color-primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 8px;
  cursor: pointer;
}
.btn-default:hover { background: var(--color-primary-dark); color: white; }

/* Intro section */
.standard-box { padding: 0; }
.noverflow { overflow: hidden; }
.z-index-one { position: relative; z-index: 1; }

.micro-heading {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.main-content-header h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
article.mce-content-body p { line-height: 1.8; }
article.mce-content-body p.lead {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.liner {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 80px;
  background: var(--color-primary);
  margin: 0 auto;
}
.btn-container { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 10px; }
.btn-container a, .btn-container button {
  display: inline-block;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}
.btn-container a:hover, .btn-container button:hover {
  background: var(--color-primary);
  color: white;
}

/* Esperienze section */
.set-img { position: relative; overflow: hidden; border-radius: 2px; }
.set-shadow { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.set-img img { width: 100%; height: 100%; object-fit: cover; }
.verticalize { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 2rem 1rem; }
.plan-one img { max-height: 420px; object-fit: cover; }
.btn.textlink { color: var(--color-primary); border: none; padding: 0; font-weight: 600; text-decoration: underline; }

/* Dividers */
.invert-item { margin-bottom: 2rem; }

/* ===================================================
   SERVIZI GRID
   =================================================== */
.service-item {
  padding: 1.5rem 1rem;
  border-radius: 6px;
  background: white;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-item:hover {
  box-shadow: 0 6px 24px rgba(0,76,151,0.12);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.service-item h5 {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.service-item p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ===================================================
   FADE-IN ON SCROLL — IntersectionObserver
   =================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero logo fade in */
.header-logo {
  animation: heroFadeIn 1.2s ease 0.3s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Top support menu items sequential */
.top-support-menu dt {
  animation: menuItemFade 0.5s ease both;
}
.top-support-menu dt:nth-child(1) { animation-delay: 0.5s; }
.top-support-menu dt:nth-child(2) { animation-delay: 0.65s; }
.top-support-menu dt:nth-child(3) { animation-delay: 0.8s; }
.top-support-menu dt:nth-child(4) { animation-delay: 0.95s; }
.top-support-menu dt:nth-child(5) { animation-delay: 1.1s; }
.top-support-menu dt:nth-child(6) { animation-delay: 1.25s; }
@keyframes menuItemFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Utility margin bottom */
.b-margin-l { margin-bottom: 2rem; }
.b-margin-m { margin-bottom: 1rem; }

/* ===================================================
   TIPOGRAFIA — miglioramenti eleganza
   =================================================== */
/* H1 su pagine interne */
.main-content-header h1,
h1.main-content-header {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Testo corpo più elegante */
article.mce-content-body {
  color: var(--color-text);
  max-width: 100%;
}
article.mce-content-body p {
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 0.96rem;
}
article.mce-content-body p.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
}
article.mce-content-body h3 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,76,151,0.12);
  padding-bottom: 0.4rem;
}
article.mce-content-body strong {
  font-weight: 600;
  color: #2a2a2a;
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: rgba(10,20,40,0.96);
  color: rgba(255,255,255,0.88);
  padding: 18px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
}
#cookie-consent-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
#cookie-consent-banner a {
  color: rgba(180,210,255,0.9);
  text-decoration: underline;
}
.cookie-btn-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-group button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 7px 18px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.2s;
}
#cookie-accept-all {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
#cookie-accept-all:hover { background: var(--color-primary-dark); }
#cookie-accept-essential {
  background: transparent;
  color: rgba(255,255,255,0.8);
}
#cookie-accept-essential:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  #cookie-consent-banner { padding: 16px 18px; }
  .cookie-btn-group { width: 100%; }
  .cookie-btn-group button { flex: 1; }
}

@media (max-width: 768px) {
  .top-lang-nav { display: none; }
  .fullscreen-list a { font-size: 1.3rem; }
  .menu-header, .pre-menu, .fullscreen-list, .menu-footer {
    padding-left: 20px; padding-right: 20px;
  }
  .footer-brands { justify-content: flex-start; }
  .top-support-menu dt a {
    padding: 8px 10px 10px;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .top-support-menu dt a::before {
    width: 5px; height: 5px;
  }
  .header-logo { max-width: 75vw; }
  .fullscreen-container { height: 80vh; }
  .fullscreen-desc { padding: 30px 0; }
  .liner { display: none; }
}

/* ===================================================
   ROOM BLOCKS — le-camere page
   =================================================== */
.room-title {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}
.room-meta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #777;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--color-primary);
  padding-left: 10px;
}
.room-img-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}
.room-img-side {
  width: 100%;
  height: 154px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .room-img-main { height: 220px; }
  .room-img-side { height: 105px; }
}

/* ===================================================
   HOTEL PAGE — image gallery grid
   =================================================== */
.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 2rem;
}
.hotel-gallery-grid img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 4px;
}
.hotel-gallery-grid img.tall {
  height: 100%;
  grid-row: span 2;
}
.hotel-gallery-grid.three-col {
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 768px) {
  .hotel-gallery-grid { grid-template-columns: 1fr; }
  .hotel-gallery-grid img { height: 200px; }
  .hotel-gallery-grid.three-col { grid-template-columns: 1fr; }
}

/* ===================================================
   FOOD GRID — colazione / ristorante
   =================================================== */
.food-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 2rem;
}
.food-photo-row img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .food-photo-row { grid-template-columns: repeat(2, 1fr); }
  .food-photo-row img { height: 130px; }
}

/* ===================================================
   OFFER CARDS — offerte page
   =================================================== */
.offer-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card-img {
  position: relative;
  overflow: hidden;
}
.offer-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.offer-card:hover .offer-card-img img { transform: scale(1.04); }
.offer-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--color-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.offer-badge-alt { background: var(--color-primary-dark); }
.offer-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-card-title {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 0.3rem 0 0.8rem;
}
.offer-include {
  list-style: none;
  padding: 0; margin: 0.8rem 0;
  font-size: 0.87rem;
  color: #555;
}
.offer-include li { padding: 3px 0; }
.offer-include li i { color: var(--color-primary); margin-right: 6px; }
.offer-card-body .btn-container { margin-top: auto; padding-top: 1rem; }

/* Riga sotto h2 nelle pagine interne */
article.mce-content-body h2.riga-sotto,
h2.riga-sotto {
  position: relative;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
}
h2.riga-sotto::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--color-primary);
}
