:root {
  --font-title: Georgia, "Times New Roman", serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --blue: #0057a8;
  --blue-dark: #003f7d;
  --blue-ink: #06233a;
  --blue-soft: #eaf6ff;
  --cream: #f8f1e6;
  --cream-light: #fbf8f1;
  --white: #ffffff;
  --text: #153247;
  --muted: #667887;
  --gold: #c9a24a;
  --line: rgba(6, 35, 58, 0.12);
  --shadow: 0 24px 70px rgba(6, 35, 58, 0.13);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream-light);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--blue-dark);
  color: white;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

/* TOP STRIP */
.top-strip {
  min-height: 34px;
  padding: 8px 6vw;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--blue-dark);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.top-strip a {
  color: white;
}

/* HEADER */
.site-header {
  min-height: 78px;
  padding: 10px 34px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-ink);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.brand span {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.main-nav a {
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
  box-shadow: 0 14px 34px rgba(0, 87, 168, 0.24);
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-soft);
  cursor: pointer;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--blue-dark);
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 34px rgba(0, 87, 168, 0.24);
}

.btn.primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 1px solid rgba(0, 87, 168, 0.22);
}

.btn.secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: " →";
}

/* HERO / BANNER */
.hero {
  background: var(--cream-light);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(360px, 31vw, 430px);
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide.active img {
  animation: heroZoomOut 5.2s ease-out forwards;
}

.hero-slide:first-child img {
  object-position: center 48%;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  object-position: center center;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

.hero-dots {
  position: absolute;
  right: 6vw;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dot {
  width: 42px;
  height: 4px;
  border: 0;
  background: rgba(255,255,255,0.48);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
}

.hero-panel {
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.95;
}

.hero-subtitle {
  margin-top: 10px;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* SECTIONS */
.about-section {
  padding: 92px 6vw;
  background: var(--cream-light);
}

.section-intro {
  max-width: 920px;
  margin: 0 auto 44px;
}

.section-intro.center {
  text-align: center;
}

.section-intro h2,
.space-copy h2,
.menu-preview h2,
.chef-copy h2,
.reservation-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(36px, 4.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.section-intro p,
.menu-preview p,
.reservation-cta p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-copy {
  padding: 38px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(6, 35, 58, 0.08);
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-image {
  overflow: hidden;
  border-radius: 44px 10px 44px 10px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

/* VALUES */
.values-section {
  padding: 0 6vw 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--cream-light);
}

.value-card {
  padding: 34px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 35, 58, 0.06);
}

.value-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.value-card h3 {
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 22px;
}

.value-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* SPACE SECTION */
.space-section {
  padding: 92px 6vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  background: white;
}

.space-image {
  overflow: hidden;
  border-radius: 10px 48px 10px 48px;
  box-shadow: var(--shadow);
}

.space-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
}

.space-copy {
  max-width: 620px;
}

.space-copy p,
.chef-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

/* MENU PREVIEW */
.menu-preview {
  padding: 100px 6vw;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 87, 168, 0.10), transparent 34%),
    linear-gradient(180deg, var(--cream-light), var(--cream));
}

.preview-actions,
.cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* CHEF STRIP */
.chef-strip {
  padding: 92px 6vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  background: white;
}

.chef-photo {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.chef-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

.chef-copy {
  max-width: 720px;
}

/* CTA */
.reservation-cta {
  padding: 100px 6vw;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(0,63,125,0.94), rgba(0,87,168,0.88)),
    url("../img/banner/casafachada.webp");
  background-size: cover;
  background-position: center;
}

.reservation-cta .eyebrow,
.reservation-cta h2,
.reservation-cta p {
  color: white;
}

.reservation-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.82);
}

/* FOOTER */
.site-footer {
  padding: 68px 6vw 26px;
  background: #031f3a;
  color: rgba(255,255,255,0.78);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
}

.footer-logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  font-size: 25px;
  line-height: 1;
}

.footer-logo span {
  display: block;
  margin-top: 5px;
  color: #9bd5ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover,
.legal-links a:hover {
  color: white;
}

.footer-legal {
  max-width: 1240px;
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #9bd5ff;
  font-weight: 800;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 87, 168, 0.30);
  transition: 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .about-grid,
  .space-section,
  .chef-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-section {
    grid-template-columns: 1fr;
  }

  .space-copy,
  .chef-copy {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding-right: 18px;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-slider {
    height: 330px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 24px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .top-strip {
    font-size: 10px;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .top-strip span {
    width: 100%;
    text-align: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand span {
    font-size: 9px;
  }

  .hero-slider {
    height: 270px;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .btn {
    width: 100%;
  }

  .about-section,
  .space-section,
  .menu-preview,
  .chef-strip,
  .reservation-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .values-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-copy {
    padding: 26px;
  }

  .about-image img,
  .space-image img,
  .chef-photo img {
    height: 330px;
  }

  .footer-legal {
    display: grid;
  }
}


/* ==============================
   HOME STORY - A CASA
   ============================== */

.home-story {
  padding: 86px 6vw;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
}

.home-story-copy {
  position: relative;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
    linear-gradient(135deg, rgba(0,87,168,0.08), rgba(201,162,74,0.08));
  border: 1px solid rgba(0,87,168,0.16);
  box-shadow: 0 22px 60px rgba(6, 35, 58, 0.08);
}

.home-story-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 999px;
  background: var(--blue);
}

.home-story-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.gold-line {
  width: 86px;
  height: 2px;
  margin: 24px 0 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.home-story-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.home-story-copy p + p {
  margin-top: 18px;
}

.home-story-image {
  overflow: hidden;
  border-radius: 12px 54px 12px 54px;
  box-shadow: 0 26px 76px rgba(6, 35, 58, 0.16);
  border: 1px solid rgba(201,162,74,0.28);
  background: var(--blue-dark);
}

.home-story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1080px) {
  .home-story {
    grid-template-columns: 1fr;
  }

  .home-story-image img {
    height: 460px;
  }
}

@media (max-width: 620px) {
  .home-story {
    padding: 58px 20px;
  }

  .home-story-copy {
    padding: 30px 26px;
  }

  .home-story-image {
    border-radius: 28px;
  }

  .home-story-image img {
    height: 330px;
  }
}

/* ==============================
   SIGNATURE STRIP - HOME
   ============================== */

.signature-strip {
  padding: 34px 6vw 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #ffffff;
}

.signature-item {
  position: relative;
  padding: 30px 34px;
  border-top: 1px solid rgba(0, 87, 168, 0.18);
  border-bottom: 1px solid rgba(0, 87, 168, 0.18);
  background: #ffffff;
}

.signature-item + .signature-item {
  border-left: 1px solid rgba(0, 87, 168, 0.14);
}

.signature-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 34px;
  width: 72px;
  height: 2px;
  background: var(--gold);
}

.signature-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.signature-item strong {
  display: block;
  color: var(--blue-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
}

.signature-item p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 15.5px;
}

@media (max-width: 900px) {
  .signature-strip {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .signature-item + .signature-item {
    border-left: 0;
  }
}

/* ==============================
   HOME MENU CARD - CARTA ELEGANTE
   ============================== */

.home-menu-card {
  position: relative;
  padding: 96px 6vw;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 87, 168, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  overflow: hidden;
}

.home-menu-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 58px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(0,87,168,0.08), rgba(201,162,74,0.10));
  border: 1px solid rgba(0, 87, 168, 0.22);
  border-radius: 38px;
  box-shadow: 0 26px 76px rgba(6, 35, 58, 0.11);
}

.home-menu-inner::before,
.home-menu-inner::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  pointer-events: none;
  opacity: 0.9;
}

.home-menu-inner::before {
  top: 20px;
  left: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 26px 0 0 0;
}

.home-menu-inner::after {
  right: 20px;
  bottom: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 26px 0;
}

.home-menu-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.95;
  letter-spacing: -1px;
}

.menu-script {
  margin-top: 16px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.18;
  font-style: italic;
}

.gold-divider {
  width: min(360px, 70%);
  height: 2px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.home-menu-text {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.home-menu-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vertical-word {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: rgba(0, 63, 125, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 120px);
  font-weight: 700;
  letter-spacing: 15px;
  text-transform: uppercase;
  pointer-events: none;
}

.vertical-word.left {
  left: 4vw;
}

.vertical-word.right {
  right: 4vw;
}

.menu-ornament {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(201, 162, 74, 0.28);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.menu-ornament::before,
.menu-ornament::after {
  content: "";
  position: absolute;
  background: rgba(201, 162, 74, 0.34);
  border-radius: 999px;
}

.menu-ornament::before {
  width: 72px;
  height: 2px;
  top: 50%;
  left: 28px;
  transform: rotate(-35deg);
}

.menu-ornament::after {
  width: 2px;
  height: 72px;
  top: 28px;
  left: 50%;
  transform: rotate(35deg);
}

.menu-ornament-left {
  left: 7vw;
  top: 42px;
}

.menu-ornament-right {
  right: 7vw;
  bottom: 42px;
}

@media (max-width: 900px) {
  .vertical-word,
  .menu-ornament {
    display: none;
  }

  .home-menu-inner {
    padding: 48px 30px;
  }
}

@media (max-width: 620px) {
  .home-menu-card {
    padding: 66px 20px;
  }

  .home-menu-inner {
    padding: 40px 24px;
    border-radius: 30px;
  }

  .home-menu-actions .btn {
    width: 100%;
  }
}

/* ==============================
   GALERIA FINAL
   ============================== */

.gallery-hero-final {
  padding: 84px 6vw 70px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.gallery-hero-text {
  max-width: 580px;
}

.gallery-hero-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.94;
  letter-spacing: -1.2px;
}

.gallery-hero-text p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.gallery-hero-collage {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  object-fit: cover;
  border: 8px solid #ffffff;
  box-shadow: 0 22px 70px rgba(6, 35, 58, 0.16);
  background: #ffffff;
}

.hero-photo-1 {
  left: 0;
  top: 18px;
  width: 48%;
  height: 300px;
  border-radius: 36px 8px 36px 8px;
}

.hero-photo-2 {
  right: 4%;
  top: 0;
  width: 48%;
  height: 290px;
  border-radius: 8px 36px 8px 36px;
}

.hero-photo-3 {
  left: 12%;
  bottom: 8px;
  width: 48%;
  height: 310px;
  border-radius: 8px 36px 8px 36px;
  z-index: 3;
}

.hero-photo-4 {
  right: 0;
  bottom: 52px;
  width: 39%;
  height: 250px;
  border-radius: 36px 8px 36px 8px;
}

.gallery-story {
  padding: 60px 6vw 72px;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
  background: #fbf8f1;
}

.gallery-story h2,
.gallery-block-head h2,
.chef-final-text h2,
.gallery-final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.gallery-story p,
.gallery-block-head p,
.chef-final-text p,
.gallery-final-cta p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.gallery-block {
  padding: 72px 6vw 84px;
  background: #ffffff;
}

.gallery-block.soft {
  background: #fbf8f1;
}

.gallery-block-head {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.gallery-block-head::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-layout figure,
.food-gallery figure,
.chef-final-grid figure {
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue-dark);
  box-shadow: 0 18px 56px rgba(6, 35, 58, 0.11);
  border: 1px solid rgba(0, 87, 168, 0.18);
}

.gallery-layout img,
.food-gallery img,
.chef-final-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-layout figure:hover img,
.food-gallery figure:hover img,
.chef-final-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-feature img {
  min-height: 540px;
}

.interior-layout .gallery-feature img {
  object-position: center;
}

.gallery-chef-final {
  padding: 84px 6vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  background: #ffffff;
}

.chef-final-text {
  max-width: 560px;
}

.chef-final-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.chef-final-grid figure:first-child {
  grid-column: span 1;
}

.chef-final-grid img {
  min-height: 420px;
}

.food-gallery {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.food-gallery figure {
  min-height: 250px;
}

.food-gallery figure img {
  min-height: 250px;
}

.food-big {
  grid-column: span 2;
  grid-row: span 2;
}

.food-big img {
  min-height: 520px !important;
}

.gallery-final-cta {
  padding: 84px 6vw;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(0,63,125,0.94), rgba(0,87,168,0.88)),
    url("../img/banner/casafachada.webp");
  background-size: cover;
  background-position: center;
}

.gallery-final-cta .eyebrow,
.gallery-final-cta h2,
.gallery-final-cta p {
  color: white;
}

.gallery-final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.86);
}

@media (max-width: 1120px) {
  .gallery-hero-final,
  .gallery-chef-final {
    grid-template-columns: 1fr;
  }

  .gallery-hero-collage {
    min-height: 520px;
  }

  .gallery-layout,
  .food-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .gallery-layout,
  .food-gallery,
  .chef-final-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-feature,
  .food-big {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .gallery-hero-final,
  .gallery-story,
  .gallery-block,
  .gallery-chef-final,
  .gallery-final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-hero-final {
    padding-top: 58px;
  }

  .gallery-hero-collage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-photo,
  .hero-photo-1,
  .hero-photo-2,
  .hero-photo-3,
  .hero-photo-4 {
    position: static;
    width: 100%;
    height: 280px;
    border-radius: 24px;
  }

  .gallery-layout,
  .food-gallery,
  .chef-final-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature,
  .food-big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-feature img,
  .food-big img,
  .gallery-layout img,
  .food-gallery img,
  .chef-final-grid img {
    min-height: 290px !important;
  }
}

/* ==============================
   GALLERIA ORDINATA FINALE
   ============================== */

/* Togliamo cerchi/decorazioni inutili */
.gallery-collage-hero::before,
.gallery-collage-hero::after,
.gallery-hero-final::before,
.gallery-hero-final::after {
  display: none !important;
}

/* Riduciamo gli spazi enormi tra una sezione e l'altra */
.gallery-intro,
.gallery-story {
  padding: 38px 6vw 42px !important;
  max-width: 1080px !important;
  background: #fbf8f1 !important;
}

.gallery-section,
.gallery-block {
  padding: 48px 6vw 60px !important;
}

.gallery-section.soft,
.gallery-block.soft {
  background: #fbf8f1 !important;
}

.gallery-section-head,
.gallery-block-head {
  max-width: 980px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}

.gallery-intro h2,
.gallery-story h2,
.gallery-section-head h2,
.gallery-block-head h2,
.chef-final-text h2 {
  font-size: clamp(30px, 3.7vw, 54px) !important;
  line-height: 1.05 !important;
}

.gallery-intro p,
.gallery-story p,
.gallery-section-head p,
.gallery-block-head p,
.chef-final-text p {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.gallery-section-head::after,
.gallery-block-head::after {
  margin-top: 18px !important;
}

/* Griglie ordinate: niente più grande + quattro vicino */
.gallery-grid,
.gallery-layout,
.food-gallery,
.chef-final-grid {
  max-width: 1240px !important;
  margin: 0 auto !important;
  display: grid !important;
  gap: 20px !important;
  grid-auto-flow: row !important;
}

/* Esterno: foto tutte coerenti */
.gallery-grid-exterior,
.exterior-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Interni: foto tutte coerenti */
.gallery-grid-interior,
.interior-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Chef: tre foto ordinate */
.gallery-grid-chef,
.chef-final-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Piatti: galleria più compatta e ordinata */
.gallery-grid-food,
.food-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Togliamo qualsiasi span grande rimasto */
.gallery-card,
.gallery-card.large,
.gallery-layout figure,
.food-gallery figure,
.chef-final-grid figure,
.food-big,
.gallery-feature {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  height: auto !important;
}

/* Foto pulite, senza testo sopra */
.gallery-card::after {
  display: none !important;
}

.gallery-card-copy {
  display: none !important;
}

/* Stile comune foto */
.gallery-card,
.gallery-layout figure,
.food-gallery figure,
.chef-final-grid figure {
  overflow: hidden !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 87, 168, 0.16) !important;
  box-shadow: 0 16px 42px rgba(6, 35, 58, 0.09) !important;
}

/* Misure per sezione */
.gallery-grid-exterior img,
.exterior-layout img {
  width: 100% !important;
  height: 310px !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.gallery-grid-interior img,
.interior-layout img {
  width: 100% !important;
  height: 320px !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.gallery-grid-chef img,
.chef-final-grid img {
  width: 100% !important;
  height: 390px !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.gallery-grid-food img,
.food-gallery img {
  width: 100% !important;
  height: 250px !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Chef: più elegante, meno sparso */
.gallery-chef-final {
  padding: 58px 6vw 70px !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 34px !important;
}

.chef-final-text {
  max-width: 560px !important;
}

/* CTA finale più compatta */
.gallery-cta,
.gallery-final-cta {
  padding: 64px 6vw !important;
}

/* Responsive */
@media (max-width: 1120px) {
  .gallery-grid-exterior,
  .exterior-layout,
  .gallery-grid-interior,
  .interior-layout,
  .gallery-grid-food,
  .food-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gallery-grid-chef,
  .chef-final-grid,
  .gallery-chef-final {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .gallery-intro,
  .gallery-story,
  .gallery-section,
  .gallery-block,
  .gallery-chef-final,
  .gallery-cta,
  .gallery-final-cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .gallery-grid-exterior,
  .exterior-layout,
  .gallery-grid-interior,
  .interior-layout,
  .gallery-grid-food,
  .food-gallery,
  .gallery-grid-chef,
  .chef-final-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid-exterior img,
  .exterior-layout img,
  .gallery-grid-interior img,
  .interior-layout img,
  .gallery-grid-food img,
  .food-gallery img,
  .gallery-grid-chef img,
  .chef-final-grid img {
    height: 290px !important;
  }
}

/* ==============================
   LEGAL PAGES
   ============================== */

.legal-page {
  padding: 84px 6vw;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 87, 168, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.legal-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 168, 0.14);
  box-shadow: 0 24px 70px rgba(6, 35, 58, 0.10);
}

.legal-container h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -1px;
}

.legal-lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.legal-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue-ink);
  line-height: 1.65;
}

.legal-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 87, 168, 0.14);
}

.legal-block h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.legal-block ul {
  margin-top: 12px;
  padding-left: 22px;
}

.legal-block a {
  color: var(--blue);
  font-weight: 900;
}

.legal-updated {
  margin-top: 34px;
  color: var(--blue-dark);
  font-weight: 900;
}

.footer-legal.single {
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 54px 20px;
  }

  .legal-container {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .legal-block h2 {
    font-size: 26px;
  }
}

/* ==============================
   CONTACTOS CLEAN
   ============================== */

.contact-clean-hero {
  padding: 82px 6vw;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 87, 168, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.contact-clean-copy {
  max-width: 760px;
}

.contact-clean-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-clean-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.contact-clean-image {
  overflow: hidden;
  border-radius: 54px 10px 54px 10px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 74, 0.24);
}

.contact-clean-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.contact-cards-clean {
  padding: 64px 6vw 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #ffffff;
}

.contact-card-clean {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(0,87,168,0.08), rgba(201,162,74,0.10));
  border: 1px solid rgba(0, 87, 168, 0.16);
  box-shadow: 0 18px 50px rgba(6, 35, 58, 0.07);
  position: relative;
}

.contact-card-clean::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 70px;
  height: 2px;
  background: var(--gold);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 20px;
  margin-bottom: 18px;
}

.contact-card-clean h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: 28px;
  line-height: 1.05;
}

.contact-card-clean p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 15.5px;
}

.contact-card-clean a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 13px;
}

.reservation-clean {
  padding: 88px 6vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 162, 74, 0.13), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #f8f1e6 100%);
}

.reservation-clean-copy h2,
.qr-card h2,
.location-card-clean h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
}

.reservation-clean-copy p,
.qr-card p,
.location-card-clean p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.reservation-form-clean {
  padding: 36px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 168, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reservation-form-clean label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.reservation-form-clean input,
.reservation-form-clean textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid rgba(0, 87, 168, 0.18);
  border-radius: 16px;
  background: #fbf8f1;
  color: var(--blue-ink);
  font: inherit;
  outline: none;
}

.reservation-form-clean input:focus,
.reservation-form-clean textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 168, 0.10);
  background: #ffffff;
}

.reservation-form-clean textarea {
  min-height: 110px;
  resize: vertical;
}

.reservation-form-clean .full {
  grid-column: 1 / -1;
}

.qr-location-section {
  padding: 84px 6vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
}

.qr-card,
.location-card-clean {
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(0, 87, 168, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(6, 35, 58, 0.08);
}

.qr-card {
  text-align: center;
}

.qr-image {
  width: 220px;
  height: 220px;
  margin: 26px auto 0;
  padding: 12px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(0, 87, 168, 0.14);
  box-shadow: 0 14px 34px rgba(6, 35, 58, 0.08);
}

.location-card-clean {
  background:
    linear-gradient(135deg, rgba(0,63,125,0.94), rgba(0,87,168,0.86)),
    url("../img/exterior/casa-da-vila-fachada-restaurante.webp");
  background-size: cover;
  background-position: center;
  color: white;
}

.location-card-clean .eyebrow,
.location-card-clean h2,
.location-card-clean p {
  color: white;
}

.location-card-clean p {
  color: rgba(255,255,255,0.84);
}

.location-address {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: grid;
  gap: 6px;
}

.location-address strong {
  color: white;
  font-size: 18px;
}

.location-address span {
  color: rgba(255,255,255,0.86);
}

.location-card-clean .btn.primary {
  background: white;
  color: var(--blue-dark);
  box-shadow: none;
}

.location-card-clean .btn.primary:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

/* Togliamo vecchia mappa incorporata se qualche CSS vecchio resta */
.map-section,
.compliance-section {
  display: none !important;
}

@media (max-width: 1120px) {
  .contact-clean-hero,
  .reservation-clean,
  .qr-location-section {
    grid-template-columns: 1fr;
  }

  .contact-cards-clean {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-clean-image img {
    height: 440px;
  }
}

@media (max-width: 700px) {
  .contact-clean-hero,
  .contact-cards-clean,
  .reservation-clean,
  .qr-location-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-clean-hero {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .contact-cards-clean,
  .reservation-form-clean {
    grid-template-columns: 1fr;
  }

  .reservation-form-clean {
    padding: 26px;
  }

  .contact-clean-image img {
    height: 320px;
  }

  .qr-card,
  .location-card-clean {
    padding: 28px;
  }

  .qr-image {
    width: 190px;
    height: 190px;
  }
}

/* ==============================
   MENU ELEGANTE
   ============================== */

.menu-elegant-hero {
  padding: 84px 6vw 92px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 162, 74, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.menu-elegant-copy {
  max-width: 720px;
}

.menu-elegant-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.94;
  letter-spacing: -1.1px;
}

.menu-elegant-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.menu-photo-stack {
  position: relative;
  min-height: 560px;
}

.menu-stack-img {
  position: absolute;
  object-fit: cover;
  background: white;
  border: 8px solid #ffffff;
  box-shadow: 0 24px 76px rgba(6, 35, 58, 0.16);
}

.menu-stack-img.main {
  left: 0;
  top: 20px;
  width: 72%;
  height: 430px;
  border-radius: 52px 8px 52px 8px;
}

.menu-stack-img.second {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 340px;
  border-radius: 8px 48px 8px 48px;
}

.menu-note-elegant {
  padding: 22px 6vw;
  background: var(--blue-dark);
  color: white;
  text-align: center;
}

.menu-note-elegant p {
  max-width: 940px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

.menu-note-elegant strong {
  color: white;
}

.menu-paper-section {
  padding: 88px 6vw;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 87, 168, 0.07), transparent 28%),
    #ffffff;
}

.menu-paper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(0,87,168,0.08), rgba(201,162,74,0.12));
  border: 1px solid rgba(0, 87, 168, 0.20);
  box-shadow: 0 28px 82px rgba(6, 35, 58, 0.12);
  overflow: hidden;
}

.menu-paper::before,
.menu-paper::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  pointer-events: none;
}

.menu-paper::before {
  top: 24px;
  left: 24px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 26px 0 0 0;
}

.menu-paper::after {
  right: 24px;
  bottom: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 26px 0;
}

.menu-paper-top {
  text-align: center;
  margin-bottom: 46px;
}

.paper-line {
  display: block;
  width: min(420px, 80%);
  height: 2px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-paper-top .paper-line:last-child {
  margin: 24px auto 0;
}

.menu-paper-top h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.94;
}

.paper-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 23px;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
}

.menu-category-paper {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 87, 168, 0.16);
}

.menu-category-paper h3 {
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.menu-item-paper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dotted rgba(0, 87, 168, 0.28);
}

.menu-item-paper h4 {
  color: var(--blue-ink);
  font-size: 18px;
  line-height: 1.2;
}

.menu-item-paper p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.menu-item-paper span {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.menu-paper-bottom {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 162, 74, 0.38);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu-paper-bottom p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.menu-gallery-preview {
  padding: 84px 6vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  background: #fbf8f1;
}

.menu-gallery-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(36px, 4.7vw, 68px);
  line-height: 1.02;
}

.menu-gallery-text p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.menu-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-mini-gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 56px rgba(6, 35, 58, 0.12);
  border: 1px solid rgba(0, 87, 168, 0.16);
}

@media (max-width: 1040px) {
  .menu-elegant-hero,
  .menu-gallery-preview {
    grid-template-columns: 1fr;
  }

  .menu-photo-stack {
    min-height: 500px;
  }

  .menu-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .menu-elegant-hero,
  .menu-paper-section,
  .menu-gallery-preview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-photo-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .menu-stack-img,
  .menu-stack-img.main,
  .menu-stack-img.second {
    position: static;
    width: 100%;
    height: 310px;
    border-radius: 28px;
  }

  .menu-paper {
    padding: 36px 24px;
  }

  .menu-paper::before,
  .menu-paper::after {
    width: 70px;
    height: 70px;
  }

  .menu-paper-bottom {
    display: grid;
  }

  .menu-paper-bottom .btn {
    width: 100%;
  }

  .menu-mini-gallery {
    grid-template-columns: 1fr;
  }

  .menu-mini-gallery img {
    height: 300px;
  }
}

/* ==============================
   GALERIA CLEAN 2X2
   ============================== */

.gallery-clean-intro {
  padding: 58px 6vw 44px;
  text-align: center;
  background: #ffffff;
}

.gallery-clean-intro h2,
.gallery-clean-head h2,
.gallery-clean-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.7px;
}

.gallery-clean-intro p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.gallery-clean-section {
  padding: 58px 6vw 66px;
  background: #ffffff;
}

.gallery-clean-section.soft {
  background: #fbf8f1;
}

.gallery-clean-head {
  max-width: 950px;
  margin: 0 auto 30px;
  text-align: center;
}

.gallery-clean-head span {
  display: block;
  width: 96px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-clean-head h2 {
  margin-top: 8px;
}

.gallery-two-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.gallery-two-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 2px solid rgba(201, 162, 74, 0.64);
  box-shadow: 0 18px 52px rgba(6, 35, 58, 0.10);
}

.gallery-two-grid figure::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.38);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.gallery-two-grid img {
  width: 100%;
  height: 330px;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-two-grid figure:hover img {
  transform: scale(1.035);
}

.chef-two img {
  height: 430px;
}

.food-two img {
  height: 300px;
}

.gallery-clean-cta {
  padding: 76px 6vw;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0,63,125,0.92), rgba(0,87,168,0.84)),
    url("../img/banner/casafachada.webp");
  background-size: cover;
  background-position: center;
}

.gallery-clean-cta .eyebrow,
.gallery-clean-cta h2,
.gallery-clean-cta p {
  color: white;
}

.gallery-clean-cta p {
  margin: 16px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.75;
}

.gallery-clean-cta .cta-actions {
  margin-top: 28px;
}

.gallery-clean-cta .btn.secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.48);
}

/* disattiva layout vecchi nelle sezioni rifatte */
.gallery-clean-section .gallery-feature,
.gallery-clean-section .food-big {
  grid-column: auto !important;
  grid-row: auto !important;
}

/* mobile */
@media (max-width: 760px) {
  .gallery-clean-intro,
  .gallery-clean-section,
  .gallery-clean-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-two-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-two-grid img,
  .food-two img,
  .chef-two img {
    height: 290px;
  }
}

/* ==============================
   GALLERIA QUADRATA FINALE
   ============================== */

/* Sezioni più compatte */
.gv2-intro {
  padding: 38px 6vw 34px;
  text-align: center;
  background: #ffffff;
}

.gv2-intro h2,
.gv2-head h2,
.gv2-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.5px;
}

.gv2-intro p {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.gv2-section {
  padding: 42px 6vw 52px;
  background: #ffffff;
}

.gv2-section.soft {
  background: #fbf8f1;
}

.gv2-head {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.gv2-head::before {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gv2-head h2 {
  margin-top: 6px;
}

/* Griglia più piccola, quadrata, centrata */
.gv2-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Card foto quadrate */
.gv2-grid figure {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 2px solid rgba(201, 162, 74, 0.72);
  box-shadow: 0 14px 38px rgba(6, 35, 58, 0.09);
}

.gv2-grid figure::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201, 162, 74, 0.42);
  border-radius: 19px;
  z-index: 2;
  pointer-events: none;
}

.gv2-grid img {
  width: 108%;
  height: 108%;
  margin: -4%;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Chef: taglio più alto per vedere meglio il volto */
.gv2-grid.chef img {
  object-position: center 22%;
}

/* Alcuni piatti zoomati leggermente per togliere bordi neri/contorni strani */
.gv2-grid.food img {
  width: 112%;
  height: 112%;
  margin: -6%;
}

/* CTA finale */
.gv2-cta {
  padding: 62px 6vw;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0,63,125,0.92), rgba(0,87,168,0.84)),
    url("../img/banner/casafachada.webp");
  background-size: cover;
  background-position: center;
}

.gv2-cta .eyebrow,
.gv2-cta h2,
.gv2-cta p {
  color: white;
}

.gv2-cta p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.65;
}

.gv2-cta .cta-actions {
  margin-top: 26px;
}

.gv2-cta .btn.secondary {
  color: white;
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.10);
}

/* Cancella effetti vecchi sulle sezioni nuove */
.gv2-section .gallery-feature,
.gv2-section .food-big,
.gv2-section .gallery-card,
.gv2-section .gallery-card.large {
  grid-column: auto !important;
  grid-row: auto !important;
}

/* Mobile */
@media (max-width: 760px) {
  .gv2-intro,
  .gv2-section,
  .gv2-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gv2-grid {
    max-width: 420px;
    grid-template-columns: 1fr;
  }
}




/* ==============================
   SOBREMESAS DEFINITIVO
   ============================== */

.gfinal-grid.desserts-three {
  display: grid !important;
  grid-template-columns: repeat(2, 260px) !important;
  justify-content: center !important;
  gap: 22px !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gfinal-grid.desserts-three figure:first-child {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
}

@media (max-width: 680px) {
  .gfinal-grid.desserts-three {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .gfinal-grid.desserts-three figure:first-child {
    grid-column: auto !important;
  }
}


/* ==============================
   FIX VERO SOBREMESAS GV2
   ============================== */

.gv2-grid.desserts-three {
  display: grid !important;
  grid-template-columns: repeat(2, 260px) !important;
  justify-content: center !important;
  gap: 22px !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gv2-grid.desserts-three figure {
  width: 260px !important;
  max-width: 260px !important;
  aspect-ratio: 1 / 1 !important;
  justify-self: center !important;
}

.gv2-grid.desserts-three figure:first-child {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
}

@media (max-width: 680px) {
  .gv2-grid.desserts-three {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .gv2-grid.desserts-three figure,
  .gv2-grid.desserts-three figure:first-child {
    grid-column: auto !important;
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }
}

/* ==============================
   CENTRA FOTO SINGOLA IN ULTIMA RIGA
   ============================== */

/* Per tutte le griglie gv2: se resta una foto sola nell'ultima riga, la centra */
.gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
}

/* Mantiene Sobremesas con layout speciale: una sopra, due sotto */
.gv2-grid.desserts-three figure:first-child {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
}


/* ==============================
   FIX FOTO SINGOLA CENTRATA MA NON GRANDE
   ============================== */

/* Se una griglia gv2 ha una foto finale da sola, la centra ma la lascia della stessa misura delle altre */
.gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: min(100%, 390px) !important;
  max-width: 390px !important;
}

/* Mantiene la foto quadrata anche quando è centrata */
.gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) img {
  width: 108% !important;
  height: 108% !important;
  margin: -4% !important;
  object-fit: cover !important;
}

/* Mobile: resta normale */
@media (max-width: 760px) {
  .gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) {
    grid-column: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
}


/* ==============================
   FIX SOLO FOTO DOLCE CON BORDO NERO
   ============================== */
.gv2-grid figure img[src*="bolo-da-casa-casa-da-vila.webp"] {
  width: 122% !important;
  height: 122% !important;
  margin: -11% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}


/* ==============================
   FIX SOLO FOTO CARACOIS CON BORDO NERO
   ============================== */

.gv2-grid figure img[src*="caracois-casa-da-vila.webp"] {
  width: 132% !important;
  height: 132% !important;
  margin: -16% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}




/* ==============================
   ANIMAZIONE SOFT GALLERIA
   ============================== */

.gallery-soft-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(3px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
  will-change: opacity, transform, filter;
}

.gallery-soft-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hover molto leggero, non effetto Canva */
.gv2-grid figure:hover {
  transform: translateY(-3px) scale(1.01);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-soft-reveal,
  .gallery-soft-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==============================
   ANIMAZIONE PARTE ALTA GALLERIA
   ============================== */

.gallery-hero-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  filter: blur(3px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
  will-change: opacity, transform, filter;
}

.gallery-hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-hero-reveal,
  .gallery-hero-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ==============================
   FIX BANNER - FOTO PIÙ INTERA
   ============================== */

/* Banner più proporzionato alle foto originali 16:9 */
.hero-slider {
  height: clamp(520px, 54vw, 680px) !important;
  background: #f7f2e8 !important;
}

/* Togliamo lo zoom che taglia ancora di più */
.hero-slide.active img {
  animation: none !important;
}

/* Le foto restano piene, ma con meno taglio perché il banner è più alto */
.hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Facciata: leggermente più bassa per vedere meglio scritta e casa */
.hero-slide:first-child img {
  object-position: center center !important;
}

/* Sala: centrata meglio */
.hero-slide:nth-child(2) img {
  object-position: center center !important;
}

/* Piatto: centrato sul piatto */
.hero-slide:nth-child(3) img {
  object-position: center center !important;
}

/* Tablet */
@media (max-width: 900px) {
  .hero-slider {
    height: 460px !important;
  }
}

/* Telefono */
@media (max-width: 620px) {
  .hero-slider {
    height: 330px !important;
  }
}


/* ==============================
   DEFINITIVO BANNER - ALTEZZA + POSIZIONI FOTO
   ============================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(400px, 42vw, 550px) !important;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Zoom più delicato, non forte come prima */
.hero-slide.active img {
  animation: heroZoomOutSoft 5.2s ease-out forwards !important;
}

/* 1. Facciata: mostra di più la parte alta */
.hero-slide:first-child img {
  object-position: center top !important;
}

/* 2. Sala: leggermente più in alto */
.hero-slide:nth-child(2) img {
  object-position: center 40% !important;
}

/* 3. Piatto: centrato */
.hero-slide:nth-child(3) img {
  object-position: center center !important;
}

@keyframes heroZoomOutSoft {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .hero-slider {
    height: 400px !important;
  }
}

@media (max-width: 620px) {
  .hero-slider {
    height: 300px !important;
  }
}




/* FIX BANNER - NO CROSSFADE TRA FOTO */
.hero-slide {
  transition: none !important;
}

.hero-slide.active {
  opacity: 1 !important;
}

.hero-slide:not(.active) {
  opacity: 0 !important;
}
/* FIM FIX BANNER - NO CROSSFADE TRA FOTO */

/* DEFINITIVO CARD HERO SCROLL DA SINISTRA */
.hero-panel {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: clamp(18px, 2.2vw, 28px) auto clamp(12px, 1.8vw, 22px) !important;
  padding: clamp(14px, 1.7vw, 22px) clamp(24px, 4vw, 56px) !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(18px, 3vw, 46px) !important;
  border-radius: 22px !important;

  opacity: 0;
  transform: translateX(-58px);
  transition:
    opacity 0.75s ease,
    transform 0.85s cubic-bezier(.22, .78, .22, 1);
}

.hero-panel.hero-panel-in-view {
  opacity: 1;
  transform: translateX(0);
}

.hero-panel .eyebrow {
  margin: 0 0 6px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.15em !important;
}

.hero-panel h1 {
  margin: 0 0 6px !important;
  font-size: clamp(2rem, 3vw, 2.9rem) !important;
  line-height: 1 !important;
}

.hero-subtitle {
  margin: 0 !important;
  font-size: clamp(0.95rem, 1vw, 1.04rem) !important;
  line-height: 1.38 !important;
}

.hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.hero-actions .btn {
  padding: 0.78rem 1.25rem !important;
  font-size: 0.76rem !important;
}

@media (max-width: 760px) {
  .hero-panel {
    width: calc(100% - 32px) !important;
    margin: 18px auto 18px !important;
    padding: 18px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .hero-panel h1 {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
  }

  .hero-actions {
    flex-wrap: wrap !important;
  }
}
/* FIM DEFINITIVO CARD HERO SCROLL DA SINISTRA */

/* DEFINITIVO FRASE BANNER CON SCROLL */
.hero-welcome-line {
  position: absolute;
  left: clamp(24px, 6vw, 82px);
  bottom: clamp(48px, 6vw, 86px);
  z-index: 5;
  max-width: min(760px, calc(100% - 48px));
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9),
    0 8px 22px rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(5, 32, 55, 0.22);
  opacity: 0;
  transform: translateX(-38px);
  pointer-events: none;
}

.hero-welcome-line-light {
  color: #fffaf0;
  text-shadow:
    0 2px 2px rgba(0, 25, 45, 0.72),
    0 8px 22px rgba(0, 20, 35, 0.52),
    0 0 1px rgba(255, 255, 255, 0.85);
}

.hero-welcome-line.hero-welcome-visible {
  animation: heroWelcomeLineEnterOnScroll 1.05s cubic-bezier(.22, .78, .22, 1) both;
}

@keyframes heroWelcomeLineEnterOnScroll {
  0% {
    opacity: 0;
    transform: translateX(-38px);
  }

  58% {
    opacity: 1;
    transform: translateX(8px);
  }

  78% {
    opacity: 1;
    transform: translateX(-4px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .hero-welcome-line {
    left: 18px;
    right: 18px;
    bottom: 70px;
    max-width: none;
    font-size: clamp(1.75rem, 7.4vw, 2.45rem);
  }
}
/* FIM DEFINITIVO FRASE BANNER CON SCROLL */

/* DEFINITIVO HOME STORY SCROLL ALLINEATA */
.home-story {
  padding-top: clamp(24px, 3.2vw, 44px) !important;
  padding-bottom: clamp(54px, 6vw, 86px) !important;
  align-items: stretch !important;
}

.home-story-copy,
.home-story-image {
  min-height: clamp(350px, 36vw, 440px) !important;
}

.home-story-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: clamp(30px, 4vw, 48px) !important;
  padding-bottom: clamp(30px, 4vw, 48px) !important;
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(.22, .78, .22, 1);
}

.home-story-image {
  opacity: 0;
  transform: translateX(44px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(.22, .78, .22, 1);
}

.home-story.home-story-in-view .home-story-copy,
.home-story.home-story-in-view .home-story-image {
  opacity: 1;
  transform: translateX(0);
}

.home-story-copy h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.35rem) !important;
  line-height: 1.05 !important;
  margin-bottom: clamp(18px, 2vw, 24px) !important;
}

.home-story-copy .gold-line {
  margin-bottom: clamp(22px, 2.4vw, 30px) !important;
}

.home-story-copy p {
  font-size: clamp(1rem, 1.08vw, 1.08rem) !important;
  line-height: 1.68 !important;
}

.home-story-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  .home-story {
    padding-top: 28px !important;
  }

  .home-story-copy,
  .home-story-image {
    min-height: auto !important;
  }

  .home-story-copy h2 {
    font-size: clamp(2rem, 8vw, 2.7rem) !important;
  }
}
/* FIM DEFINITIVO HOME STORY SCROLL ALLINEATA */

/* DEFINITIVO CARD ICONES ANIMADAS */
.signature-strip {
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: stretch !important;
}

.signature-item {
  flex: 1 1 0 !important;
  padding: clamp(21px, 2.5vw, 30px) !important;
  border-radius: 20px !important;
  background: rgba(255, 252, 245, 0.72) !important;
  box-shadow: 0 14px 30px rgba(5, 35, 58, 0.052) !important;
  opacity: 0;
  transform: scale(0.64) translateY(34px);
  transform-origin: center center;
}

.signature-item.feature-card-in-view {
  animation: featureCardGrowIn 1.15s cubic-bezier(.16, .84, .24, 1) both;
}

.signature-item:nth-child(2).feature-card-in-view {
  animation-delay: 0.16s;
}

.signature-item:nth-child(3).feature-card-in-view {
  animation-delay: 0.30s;
}

@keyframes featureCardGrowIn {
  0% {
    opacity: 0;
    transform: scale(0.64) translateY(34px);
  }

  62% {
    opacity: 1;
    transform: scale(1.045) translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 252, 245, 0.96);
  border: 1px solid rgba(181, 144, 74, 0.58);
  box-shadow: 0 10px 22px rgba(5, 35, 58, 0.085);
  color: var(--blue-dark);
}

.feature-icon svg {
  display: block !important;
  width: 25px !important;
  height: 25px !important;
  overflow: visible !important;
}

.feature-icon svg,
.feature-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.signature-item strong {
  display: block !important;
  margin-bottom: 12px !important;
  color: var(--blue-dark) !important;
  font-size: clamp(1.34rem, 1.65vw, 1.72rem) !important;
  line-height: 1.16 !important;
}

.signature-item p {
  margin: 0 !important;
  color: rgba(21, 50, 72, 0.78) !important;
  font-size: clamp(0.95rem, 0.95vw, 1.02rem) !important;
  line-height: 1.64 !important;
}

@media (max-width: 760px) {
  .signature-strip {
    gap: 18px !important;
  }

  .signature-item {
    padding: 23px !important;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 23px !important;
    height: 23px !important;
  }
}
/* FIM DEFINITIVO CARD ICONES ANIMADAS */

/* DEFINITIVO AJUSTE SECAO ESPACO */
/* Riduce SOLO lo spazio tra la sezione "SALAS COM HISTÓRIA" e il blocco "Sabores da Casa" */
.secao-espaco-ajustada {
  padding-bottom: clamp(2.8rem, 5vw, 4.5rem) !important;
  margin-bottom: 0 !important;
}

.secao-espaco-ajustada + .menu-preview,
.secao-espaco-ajustada + .menu-section,
.secao-espaco-ajustada + section {
  padding-top: clamp(1.5rem, 3vw, 2.8rem) !important;
  margin-top: 0 !important;
}
/* FIM DEFINITIVO AJUSTE SECAO ESPACO */

/* DEFINITIVO ANIMACAO SALAS HISTORIA */
.space-section.secao-espaco-ajustada {
  padding-top: clamp(34px, 4vw, 58px) !important;
  overflow: hidden !important;
  align-items: center !important;
}

.space-section.secao-espaco-ajustada .space-image,
.space-section.secao-espaco-ajustada .space-copy {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(.22, .78, .22, 1);
}

.space-section.secao-espaco-ajustada .space-image {
  transform: translateX(-46px);
}

.space-section.secao-espaco-ajustada .space-copy {
  transform: translateX(46px);
}

.space-section.secao-espaco-ajustada.space-section-in-view .space-image,
.space-section.secao-espaco-ajustada.space-section-in-view .space-copy {
  opacity: 1;
  transform: translateX(0);
}

.space-section.secao-espaco-ajustada .eyebrow,
.space-section.secao-espaco-ajustada [class*="eyebrow"] {
  margin-bottom: 16px !important;
  color: rgba(14, 52, 82, 0.66) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
}

.space-section.secao-espaco-ajustada h2 {
  font-size: clamp(2.35rem, 4vw, 3.95rem) !important;
  line-height: 1.05 !important;
  margin-bottom: clamp(18px, 2.2vw, 26px) !important;
}

.space-section.secao-espaco-ajustada p {
  font-size: clamp(1rem, 1.08vw, 1.08rem) !important;
  line-height: 1.7 !important;
  max-width: 46rem !important;
}

@media (max-width: 760px) {
  .space-section.secao-espaco-ajustada .space-image,
  .space-section.secao-espaco-ajustada .space-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .space-section.secao-espaco-ajustada h2 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }
}
/* FIM DEFINITIVO ANIMACAO SALAS HISTORIA */


/* DEFINITIVO WOW DELICATA HOME MENU CARD */
/* Mantiene il titolo luminoso ma rende la sezione menu più pulita */

/* 1) Sezione più larga e meno “cartolina” */
.home-menu-card {
  padding-top: clamp(2.2rem, 4vw, 3.2rem) !important;
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem) !important;
}

/* Provo a nascondere le decorazioni laterali della sezione menu */
.home-menu-card::before,
.home-menu-card::after {
  content: none !important;
  display: none !important;
}

.home-menu-card [class*="watermark"],
.home-menu-card [class*="vertical"],
.home-menu-card [class*="side"],
.home-menu-card [class*="ornament"],
.home-menu-card [class*="circle"],
.home-menu-card [class*="cross"] {
  display: none !important;
}

.home-menu-inner {
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding: clamp(2.2rem, 4.2vw, 3rem) clamp(1.4rem, 4vw, 3.2rem) !important;
  min-height: auto !important;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.home-menu-card:hover .home-menu-inner {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 45, 78, 0.14);
  border-color: rgba(201, 156, 75, 0.52);
}

/* 2) Angoli oro un po’ più fini */
.home-menu-inner::before,
.home-menu-inner::after {
  transition:
    width 0.42s ease,
    height 0.42s ease,
    opacity 0.42s ease,
    border-color 0.42s ease;
}

.home-menu-card:hover .home-menu-inner::before,
.home-menu-card:hover .home-menu-inner::after {
  width: 68px;
  height: 68px;
  opacity: 1;
  border-color: rgba(201, 156, 75, 0.86);
}

/* 3) Titolo più contenuto, con effetto luce blu/oro */
.home-menu-inner h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.65rem !important;
  color: #06233a;
  font-size: clamp(2.9rem, 5.4vw, 4.8rem) !important;
  line-height: 0.98 !important;
  background: linear-gradient(
    115deg,
    #06233a 0%,
    #06233a 38%,
    #0057a8 47%,
    #c99c4b 52%,
    #06233a 62%,
    #06233a 100%
  );
  background-size: 240% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: menuTitleSoftShine 8.5s ease-in-out infinite;
}

@supports (-webkit-text-fill-color: transparent) {
  .home-menu-inner h2 {
    -webkit-text-fill-color: transparent;
  }
}

@keyframes menuTitleSoftShine {
  0%, 42% {
    background-position: 0% center;
  }
  78%, 100% {
    background-position: 220% center;
  }
}

/* 4) “MENU” piccolo sopra */
.home-menu-inner .eyebrow,
.home-menu-inner .section-eyebrow,
.home-menu-inner .menu-eyebrow {
  margin-bottom: 0.55rem !important;
  letter-spacing: 0.30em !important;
}

/* 5) Sottotitolo: carattere più raffinato */
.home-menu-inner h2 + p,
.home-menu-inner h2 + .lead,
.home-menu-inner h2 + .subtitle {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0.25rem !important;
  margin-bottom: 1.2rem !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.18rem, 2.2vw, 1.72rem) !important;
  line-height: 1.45 !important;
  font-style: italic !important;
  color: #0b4c84 !important;
}

/* 6) Testo descrittivo più compatto */
.home-menu-inner h2 + p + p,
.home-menu-inner .home-menu-description,
.home-menu-inner .section-text {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
}

/* 7) Bottoni vivi ma eleganti */
.home-menu-actions .btn,
.home-menu-actions a {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.home-menu-actions .btn:hover,
.home-menu-actions a:hover {
  transform: translateY(-2px);
}

.home-menu-actions .btn.primary:hover,
.home-menu-actions .btn-primary:hover {
  background: #004f87;
  box-shadow: 0 14px 28px rgba(0, 84, 145, 0.22);
}

.home-menu-actions .btn.secondary:hover,
.home-menu-actions .btn-outline:hover,
.home-menu-actions .btn-secondary:hover {
  border-color: rgba(201, 156, 75, 0.9);
  color: #8a6422;
  box-shadow: 0 12px 24px rgba(201, 156, 75, 0.14);
}
/* FIM DEFINITIVO WOW DELICATA HOME MENU CARD */


/* DEFINITIVO CHEF SEZIONE COERENTE */
/* Tocca SOLO la sezione Chef */

.chef-strip.chef-scroll-section {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(3.2rem, 6vw, 5.4rem) clamp(1.2rem, 3vw, 2rem) !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr) !important;
  gap: clamp(2.2rem, 5vw, 4.6rem) !important;
  align-items: center !important;
}

.chef-scroll-section .chef-photo,
.chef-scroll-section .chef-copy {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.chef-scroll-section .chef-photo {
  transform: translateX(-64px);
  position: relative;
  overflow: hidden;
  border-radius: 34px !important;
  box-shadow: 0 26px 70px rgba(0, 45, 78, 0.14);
}

.chef-scroll-section .chef-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 156, 75, 0.32);
  border-radius: inherit;
  pointer-events: none;
}

.chef-scroll-section .chef-photo img {
  width: 100% !important;
  height: clamp(420px, 42vw, 520px) !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center 32% !important;
  transform: scale(1.015);
  transition: transform 0.55s ease;
}

.chef-scroll-section .chef-photo:hover img {
  transform: scale(1.045);
}

.chef-scroll-section .chef-copy {
  transform: translateX(64px);
  max-width: 660px !important;
}

.chef-scroll-section.chef-scroll-visible .chef-photo,
.chef-scroll-section.chef-scroll-visible .chef-copy {
  opacity: 1;
  transform: translateX(0);
}

.chef-scroll-section .chef-copy .eyebrow {
  margin-bottom: 0.8rem !important;
  color: #60798d !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
}

.chef-scroll-section .chef-copy h2 {
  max-width: 720px !important;
  margin: 0 !important;
  color: #06233a !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.55rem, 4.7vw, 4.45rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
}

.chef-scroll-section .chef-copy h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 1.25rem 0 1.3rem;
  background: linear-gradient(90deg, rgba(201, 156, 75, 0.95), transparent);
}

.chef-scroll-section .chef-copy p:not(.eyebrow) {
  max-width: 640px !important;
  margin: 0 !important;
  color: #526b7f !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

.chef-scroll-section .chef-copy .text-link {
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 1.25rem !important;
  color: #005491 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.chef-scroll-section .chef-copy .text-link:hover {
  transform: translateX(4px);
  color: #8a6422 !important;
}

@media (max-width: 860px) {
  .chef-strip.chef-scroll-section {
    grid-template-columns: 1fr !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .chef-scroll-section .chef-photo,
  .chef-scroll-section .chef-copy {
    transform: translateY(34px);
  }

  .chef-scroll-section.chef-scroll-visible .chef-photo,
  .chef-scroll-section.chef-scroll-visible .chef-copy {
    transform: translateY(0);
  }

  .chef-scroll-section .chef-photo img {
    height: clamp(360px, 85vw, 480px) !important;
  }

  .chef-scroll-section .chef-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem) !important;
  }
}
/* FIM DEFINITIVO CHEF SEZIONE COERENTE */


/* DEFINITIVO HERO PAGINA MENU SCROLL */
/* Tocca SOLO la parte alta della pagina menu.html */

.menu-page-hero-scroll .menu-elegant-copy,
.menu-page-hero-scroll .menu-photo-stack {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.menu-page-hero-scroll .menu-elegant-copy {
  transform: translateX(-58px);
}

.menu-page-hero-scroll .menu-photo-stack {
  transform: translateX(58px);
}

.menu-page-hero-scroll.menu-page-hero-visible .menu-elegant-copy,
.menu-page-hero-scroll.menu-page-hero-visible .menu-photo-stack {
  opacity: 1;
  transform: translateX(0);
}

.menu-page-hero-scroll .menu-elegant-copy h1 {
  max-width: 620px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.menu-page-hero-scroll .menu-elegant-copy p {
  max-width: 620px;
  line-height: 1.8;
}

.menu-page-hero-scroll .menu-photo-stack {
  filter: drop-shadow(0 26px 55px rgba(0, 45, 78, 0.12));
}

.menu-page-hero-scroll .menu-stack-img {
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;
}

.menu-page-hero-scroll .menu-photo-stack:hover .menu-stack-img.main {
  transform: translateY(-4px) scale(1.015);
}

.menu-page-hero-scroll .menu-photo-stack:hover .menu-stack-img.second {
  transform: translateY(-6px) scale(1.02);
}

@media (max-width: 860px) {
  .menu-page-hero-scroll .menu-elegant-copy,
  .menu-page-hero-scroll .menu-photo-stack {
    transform: translateY(34px);
  }

  .menu-page-hero-scroll.menu-page-hero-visible .menu-elegant-copy,
  .menu-page-hero-scroll.menu-page-hero-visible .menu-photo-stack {
    transform: translateY(0);
  }

  .menu-page-hero-scroll .menu-elegant-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }
}
/* FIM DEFINITIVO HERO PAGINA MENU SCROLL */


/* AJUSTE TEXTO HERO MENU COERENTE COM HOME */
/* Tocca SOLO dimensione/testo visuale della hero in menu.html */

.menu-elegant-hero .menu-elegant-copy h1,
.menu-page-hero-scroll .menu-elegant-copy h1 {
  max-width: 560px !important;
  font-size: clamp(2.85rem, 5vw, 4.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.menu-elegant-hero .menu-elegant-copy > p,
.menu-page-hero-scroll .menu-elegant-copy > p {
  max-width: 560px !important;
  font-size: 1.04rem !important;
  line-height: 1.75 !important;
}

@media (max-width: 860px) {
  .menu-elegant-hero .menu-elegant-copy h1,
  .menu-page-hero-scroll .menu-elegant-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.7rem) !important;
  }
}
/* FIM AJUSTE TEXTO HERO MENU COERENTE COM HOME */


/* DEFINITIVO GALERIA MENU CARD IMAGENS */
/* Tocca SOLO la sezione Galeria dentro menu.html */

.menu-gallery-scroll .menu-gallery-text,
.menu-gallery-scroll .menu-mini-card {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease,
    box-shadow 0.35s ease;
}

.menu-gallery-scroll .menu-gallery-text {
  transform: translateX(-52px);
}

.menu-gallery-scroll .menu-mini-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 20px 50px rgba(0, 45, 78, 0.10);
  transform: translateX(52px);
}

.menu-gallery-scroll.menu-gallery-visible .menu-gallery-text,
.menu-gallery-scroll.menu-gallery-visible .menu-mini-card {
  opacity: 1;
  transform: translateX(0);
}

.menu-gallery-scroll.menu-gallery-visible .menu-mini-card:nth-child(2) {
  transition-delay: 0.10s;
}

.menu-gallery-scroll.menu-gallery-visible .menu-mini-card:nth-child(3) {
  transition-delay: 0.20s;
}

.menu-gallery-scroll .menu-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.menu-gallery-scroll .menu-mini-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 35, 58, 0.74));
  pointer-events: none;
}

.menu-gallery-scroll .menu-mini-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.menu-gallery-scroll .menu-mini-card:hover {
  box-shadow: 0 26px 65px rgba(0, 45, 78, 0.16);
}

.menu-gallery-scroll .menu-mini-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

@media (max-width: 860px) {
  .menu-gallery-scroll .menu-gallery-text,
  .menu-gallery-scroll .menu-mini-card {
    transform: translateY(34px);
  }

  .menu-gallery-scroll.menu-gallery-visible .menu-gallery-text,
  .menu-gallery-scroll.menu-gallery-visible .menu-mini-card {
    transform: translateY(0);
  }

  .menu-gallery-scroll .menu-mini-card img {
    min-height: 280px;
  }
}
/* FIM DEFINITIVO GALERIA MENU CARD IMAGENS */


/* AJUSTE LAYOUT GALERIA MENU LIMPO */
/* Tocca SOLO la sezione Galeria dentro menu.html */

.menu-gallery-clean-layout {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 3vw, 2rem) !important;
  display: block !important;
}

.menu-gallery-clean-layout .menu-gallery-text {
  max-width: 760px !important;
  margin: 0 auto clamp(2rem, 4vw, 3rem) !important;
  text-align: center !important;
}

.menu-gallery-clean-layout .menu-gallery-text .eyebrow {
  display: none !important;
}

.menu-gallery-clean-layout .menu-gallery-text h2 {
  max-width: 720px !important;
  margin: 0 auto !important;
  font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.menu-gallery-clean-layout .menu-gallery-text p {
  max-width: 650px !important;
  margin: 1.2rem auto 0 !important;
  font-size: 1.03rem !important;
  line-height: 1.75 !important;
}

.menu-gallery-clean-layout .menu-gallery-text .text-link {
  display: inline-flex !important;
  margin-top: 1.2rem !important;
}

.menu-gallery-clean-layout .menu-mini-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2.4vw, 1.6rem) !important;
  align-items: stretch !important;
}

.menu-gallery-clean-layout .menu-mini-card {
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
  border-radius: 24px !important;
  background: #fffaf1 !important;
  border: 1px solid rgba(0, 84, 145, 0.10) !important;
  box-shadow: 0 20px 50px rgba(0, 45, 78, 0.10) !important;
}

.menu-gallery-clean-layout .menu-mini-img-wrap {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  background: #f7f0e6 !important;
  overflow: hidden !important;
}

.menu-gallery-clean-layout .menu-mini-card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transition: transform 0.45s ease, filter 0.45s ease !important;
}

.menu-gallery-clean-layout .menu-mini-card:nth-child(3) img {
  object-fit: contain !important;
  padding: 0.25rem !important;
  background: #f7f0e6 !important;
}

.menu-gallery-clean-layout .menu-mini-card::after {
  display: none !important;
  content: none !important;
}

.menu-gallery-clean-layout .menu-mini-card figcaption {
  position: static !important;
  display: block !important;
  padding: 0.9rem 1rem 1rem !important;
  color: #06233a !important;
  background: #fffaf1 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-shadow: none !important;
}

.menu-gallery-clean-layout .menu-mini-card:hover img {
  transform: scale(1.035) !important;
  filter: saturate(1.04) !important;
}

@media (max-width: 860px) {
  .menu-gallery-clean-layout .menu-mini-gallery {
    grid-template-columns: 1fr !important;
  }

  .menu-gallery-clean-layout .menu-gallery-text {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .menu-gallery-clean-layout .menu-gallery-text h2,
  .menu-gallery-clean-layout .menu-gallery-text p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* FIM AJUSTE LAYOUT GALERIA MENU LIMPO */


/* AJUSTE TESTI MENU HTML COERENTI */
/* Solo dimensioni testi della pagina menu.html */

/* Titolo grande in alto */
.menu-elegant-hero .menu-elegant-copy h1,
.menu-page-hero-scroll .menu-elegant-copy h1 {
  font-size: clamp(2.65rem, 4.4vw, 4rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

/* Paragrafo alto */
.menu-elegant-hero .menu-elegant-copy > p,
.menu-page-hero-scroll .menu-elegant-copy > p {
  font-size: 1.03rem !important;
  line-height: 1.75 !important;
}

/* Titolo carta menu */
.menu-paper-section .menu-paper-top h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.45rem) !important;
  line-height: 1.05 !important;
}

/* Sottotitolo carta */
.menu-paper-section .paper-subtitle {
  font-size: 1.02rem !important;
  line-height: 1.7 !important;
}

/* Titolo sezione galleria */
.menu-gallery-clean-layout .menu-gallery-text h2,
.menu-gallery-preview .menu-gallery-text h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem) !important;
  line-height: 1.07 !important;
  letter-spacing: -0.035em !important;
}

/* Paragrafo galleria */
.menu-gallery-clean-layout .menu-gallery-text p,
.menu-gallery-preview .menu-gallery-text p {
  font-size: 1.03rem !important;
  line-height: 1.75 !important;
}

/* Label piccole */
.menu-elegant-hero .eyebrow,
.menu-paper-section .eyebrow,
.menu-gallery-preview .eyebrow {
  font-size: 0.78rem !important;
  letter-spacing: 0.28em !important;
}

@media (max-width: 860px) {
  .menu-elegant-hero .menu-elegant-copy h1,
  .menu-page-hero-scroll .menu-elegant-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem) !important;
  }

  .menu-paper-section .menu-paper-top h2,
  .menu-gallery-clean-layout .menu-gallery-text h2,
  .menu-gallery-preview .menu-gallery-text h2 {
    font-size: clamp(2rem, 8vw, 2.65rem) !important;
  }
}
/* FIM AJUSTE TESTI MENU HTML COERENTI */

/* ===== AJUSTE TITOLO HERO GALERIA ===== */
.gallery-hero-final .gallery-hero-text h1 {
  font-size: clamp(2.35rem, 4vw, 3.95rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
}
/* ===== FIM AJUSTE TITOLO HERO GALERIA ===== */


/* ===== AJUSTE FOTO DENTRO CARD CHEF ===== */
.gv2-grid.chef figure:nth-child(2) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(0.90) translateY(18px) !important;
  transform-origin: center center !important;
}
/* ===== FIM AJUSTE FOTO DENTRO CARD CHEF ===== */

/* ===== TOGLI CARD FOTO GALERIA ===== */
.gv2-grid figure {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.gv2-grid figure::before {
  display: none !important;
}

.gv2-grid img {
  border-radius: 20px !important;
}
/* ===== FIM TOGLI CARD FOTO GALERIA ===== */


/* ===== GALLERY UNIFORME: GV2 + MINI MENU ===== */
.gv2-grid,
.gv2-grid.food,
.gv2-grid.chef,
.gv2-grid.desserts-three {
  --gv2-gallery-gap: 22px;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: var(--gv2-gallery-gap) !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.gv2-grid figure,
.gv2-grid.food figure,
.gv2-grid.chef figure,
.gv2-grid.desserts-three figure {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  border-radius: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  justify-self: stretch !important;
}

.gv2-grid figure::before,
.gv2-grid.food figure::before,
.gv2-grid.chef figure::before,
.gv2-grid.desserts-three figure::before {
  display: none !important;
  content: none !important;
}

.gv2-grid img,
.gv2-grid.food img,
.gv2-grid.chef img,
.gv2-grid.desserts-three img,
.gv2-grid.chef figure:nth-child(2) img,
.gv2-grid figure img[src*="bolo-da-casa-casa-da-vila.webp"],
.gv2-grid figure img[src*="caracois-casa-da-vila.webp"] {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  transform-origin: center center !important;
  display: block !important;
}

.gv2-grid.desserts-three figure:first-child {
  grid-column: auto !important;
  justify-self: stretch !important;
}

.gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
  width: calc((100% - var(--gv2-gallery-gap)) / 2) !important;
  max-width: none !important;
  justify-self: center !important;
}

.gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

.menu-gallery-clean-layout .menu-mini-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2.4vw, 1.6rem) !important;
  align-items: stretch !important;
}

.menu-gallery-clean-layout .menu-mini-card {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
}

.menu-gallery-clean-layout .menu-mini-img-wrap {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #f7f0e6 !important;
}

.menu-gallery-clean-layout .menu-mini-card img,
.menu-gallery-clean-layout .menu-mini-card:nth-child(3) img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
}

@media (max-width: 760px) {
  .gv2-grid,
  .gv2-grid.food,
  .gv2-grid.chef,
  .gv2-grid.desserts-three {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }

  .gv2-grid:not(.desserts-three) figure:last-child:nth-child(odd) {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 860px) {
  .menu-gallery-clean-layout .menu-mini-gallery {
    grid-template-columns: 1fr !important;
  }
}
/* ===== FIM GALLERY UNIFORME: GV2 + MINI MENU ===== */


/* ===== FIX GALLERY: BORDO, HOVER, TERZA SOBREMESA ===== */
.gv2-grid figure,
.gv2-grid.food figure,
.gv2-grid.chef figure,
.gv2-grid.desserts-three figure,
.menu-gallery-clean-layout .menu-mini-card,
.menu-gallery-clean-layout .menu-mini-img-wrap {
  overflow: hidden !important;
  background: #ffffff !important;
}

.gv2-grid img,
.gv2-grid.food img,
.gv2-grid.chef img,
.gv2-grid.desserts-three img,
.menu-gallery-clean-layout .menu-mini-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  vertical-align: top !important;
  transform: none !important;
}

.gv2-grid.desserts-three figure:nth-child(3) {
  grid-column: 1 / -1 !important;
  width: calc((100% - var(--gv2-gallery-gap)) / 2) !important;
  max-width: none !important;
  justify-self: center !important;
}

.gv2-grid figure:hover,
.gv2-grid.food figure:hover,
.gv2-grid.chef figure:hover,
.gv2-grid.desserts-three figure:hover,
.gv2-grid figure:hover img,
.gv2-grid.food figure:hover img,
.gv2-grid.chef figure:hover img,
.gv2-grid.desserts-three figure:hover img,
.menu-gallery-clean-layout .menu-mini-card:hover,
.menu-gallery-clean-layout .menu-mini-card:hover img {
  transform: none !important;
  filter: none !important;
}

@media (max-width: 760px) {
  .gv2-grid.desserts-three figure:nth-child(3) {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
}
/* ===== FIM FIX GALLERY: BORDO, HOVER, TERZA SOBREMESA ===== */


/* ===== FIX SOLO CARACOIS: NASCONDE BORDO NERO ORIGINALE ===== */
.gv2-grid figure img[src*="caracois-casa-da-vila.webp"] {
  transform: scale(1.07) !important;
  transform-origin: center center !important;
}
/* ===== FIM FIX SOLO CARACOIS: NASCONDE BORDO NERO ORIGINALE ===== */


/* ===== SCROLL GALLERY SX/DX ===== */
.gv2-grid figure.gallery-scroll-reveal {
  opacity: 0;
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.gv2-grid figure.gallery-scroll-reveal.from-left {
  transform: translateX(-40px);
}

.gv2-grid figure.gallery-scroll-reveal.from-right {
  transform: translateX(40px);
}

.gv2-grid figure.gallery-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gv2-grid figure.gallery-scroll-reveal:hover,
.gv2-grid figure.gallery-scroll-reveal.is-visible:hover {
  transform: translateX(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  .gv2-grid figure.gallery-scroll-reveal,
  .gv2-grid figure.gallery-scroll-reveal.from-left,
  .gv2-grid figure.gallery-scroll-reveal.from-right,
  .gv2-grid figure.gallery-scroll-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ===== FIM SCROLL GALLERY SX/DX ===== */


/* ===== CONTACTOS: SECAO CHEF E AJUSTES ===== */
.reservation-clean-copy h2,
.qr-card h2,
.location-card-clean h2 {
  font-size: clamp(30px, 3.4vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.contact-card-clean {
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.contact-card-clean:hover {
  border-color: rgba(0, 87, 168, 0.26);
  box-shadow: 0 22px 58px rgba(6, 35, 58, 0.10);
  transform: translateY(-3px);
}

.reservation-form-clean {
  padding: clamp(26px, 3vw, 32px) !important;
  border-radius: 26px !important;
  border-color: rgba(0, 87, 168, 0.12) !important;
  box-shadow: 0 14px 38px rgba(6, 35, 58, 0.07) !important;
}

.reservation-form-clean input,
.reservation-form-clean textarea {
  border-radius: 12px !important;
  background: #fffaf1 !important;
}

.contact-chef-welcome {
  padding: 72px 6vw;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.contact-chef-photo {
  overflow: hidden;
  border-radius: 34px 8px 34px 8px;
  background: #f7f0e6;
  border: 1px solid rgba(201, 162, 74, 0.26);
  box-shadow: 0 18px 48px rgba(6, 35, 58, 0.10);
}

.contact-chef-photo img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  object-fit: cover;
  object-position: center 24%;
}

.contact-chef-copy {
  max-width: 720px;
}

.contact-chef-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-chef-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.contact-chef-copy .btn {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .contact-chef-welcome {
    grid-template-columns: 1fr;
  }

  .contact-chef-copy {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .contact-chef-welcome {
    padding: 54px 20px;
  }

  .contact-chef-photo img {
    height: clamp(340px, 95vw, 460px);
  }

  .contact-card-clean:hover {
    transform: none;
  }
}
/* ===== FIM CONTACTOS: SECAO CHEF E AJUSTES ===== */


/* ===== FOOTER ORDENADO PAGINAS PRINCIPAIS ===== */
.site-footer.main-footer {
  padding: clamp(54px, 6vw, 76px) 6vw 28px;
  background:
    linear-gradient(180deg, #06233a 0%, #031f3a 100%);
  color: rgba(255, 255, 255, 0.80);
}

.site-footer.main-footer .footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(130px, 0.7fr) minmax(180px, 0.95fr) minmax(210px, 1fr) minmax(130px, 0.65fr);
  gap: clamp(24px, 3.5vw, 46px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(201, 162, 74, 0.28);
}

.site-footer.main-footer .footer-logo {
  margin-bottom: 16px;
}

.site-footer.main-footer .footer-logo img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.site-footer.main-footer .footer-logo strong {
  font-size: 24px;
}

.site-footer.main-footer .footer-logo span {
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.18em;
}

.site-footer.main-footer .footer-brand p,
.site-footer.main-footer .footer-column p,
.site-footer.main-footer .footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.72;
}

.site-footer.main-footer .footer-brand p {
  max-width: 300px;
}

.site-footer.main-footer .footer-column h3 {
  position: relative;
  width: fit-content;
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer.main-footer .footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.site-footer.main-footer .footer-column a {
  width: fit-content;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer.main-footer .footer-column a:hover,
.site-footer.main-footer .legal-links a:hover,
.site-footer.main-footer .footer-credit a:hover {
  color: #ffffff;
}

.site-footer.main-footer .footer-column a:hover {
  transform: translateX(3px);
}

.site-footer.main-footer .footer-legal {
  max-width: 1280px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  font-size: 0.82rem;
}

.site-footer.main-footer .footer-legal-main {
  display: grid;
  gap: 12px;
}

.site-footer.main-footer .footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer.main-footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer.main-footer .legal-links a {
  color: rgba(155, 213, 255, 0.88);
  font-weight: 800;
}

.site-footer.main-footer .footer-credit {
  padding-left: 20px;
  border-left: 1px solid rgba(201, 162, 74, 0.30);
  white-space: nowrap;
}

.site-footer.main-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-footer.main-footer .footer-grid {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer.main-footer {
    padding: 48px 20px 26px;
  }

  .site-footer.main-footer .footer-grid,
  .site-footer.main-footer .footer-legal {
    grid-template-columns: 1fr;
  }

  .site-footer.main-footer .footer-grid {
    gap: 28px;
  }

  .site-footer.main-footer .footer-brand p {
    max-width: none;
  }

  .site-footer.main-footer .footer-credit {
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid rgba(201, 162, 74, 0.24);
    white-space: normal;
  }
}
/* ===== FIM FOOTER ORDENADO PAGINAS PRINCIPAIS ===== */


/* ===== FIX FOOTER BOTTOM LAOPA ===== */
.site-footer.main-footer .footer-legal {
  padding-right: clamp(68px, 7vw, 104px);
  grid-template-columns: minmax(0, 1fr) minmax(150px, max-content);
  align-items: center;
}

.site-footer.main-footer .footer-legal-main {
  min-width: 0;
}

.site-footer.main-footer .legal-links {
  row-gap: 8px;
}

.site-footer.main-footer .footer-credit {
  justify-self: start;
  min-width: max-content;
}

@media (max-width: 900px) {
  .site-footer.main-footer .footer-legal {
    padding-right: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer.main-footer .footer-credit {
    justify-self: start;
    min-width: 0;
  }
}
/* ===== FIM FIX FOOTER BOTTOM LAOPA ===== */


/* === AVVICINA MENU SPECIALIDADES - INIZIO === */

.menu-elegant-hero.menu-page-hero-scroll {
  padding-bottom: 30px !important;
  min-height: auto !important;
}

.menu-paper-section {
  padding-top: 34px !important;
}

.menu-paper {
  margin-top: 0 !important;
}

/* === AVVICINA MENU SPECIALIDADES - FINE === */


/* === MENU HERO: bottoni più bassi - INIZIO === */

.menu-elegant-copy .page-hero-actions {
  margin-top: clamp(34px, 5vw, 70px) !important;
}

/* === MENU HERO: bottoni più bassi - FINE === */


/* === MENU ACCORDION SPECIALIDADES - INIZIO === */

.menu-accordion {
  border-bottom: 1px solid rgba(0, 74, 143, 0.14);
  padding: 0 !important;
}

.menu-accordion summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-title);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  color: var(--blue);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-accordion summary::-webkit-details-marker {
  display: none;
}

.menu-accordion summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 74, 143, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--blue);
  flex: 0 0 auto;
}

.menu-accordion[open] summary::after {
  content: "−";
}

.menu-accordion[open] {
  padding-bottom: 18px !important;
}

.menu-accordion .menu-item-paper {
  margin-left: 0;
}

.menu-accordion h3 {
  display: none;
}

/* === MENU ACCORDION SPECIALIDADES - FINE === */


/* === MENU ACCORDION ORO PIU PICCOLO - INIZIO === */

.menu-accordion summary {
  font-size: clamp(20px, 1.7vw, 28px) !important;
  color: #b88a2a !important;
  font-weight: 700 !important;
}

.menu-accordion summary::after {
  color: #b88a2a !important;
  border-color: rgba(184, 138, 42, 0.45) !important;
}

/* === MENU ACCORDION ORO PIU PICCOLO - FINE === */


/* === BARRA RESERVA HOME - INIZIO === */

.quick-booking-bar {
  position: relative;
  z-index: 6;
  max-width: 880px;
  margin: -38px auto 54px;
  padding: 0 22px;
}

.quick-booking-form {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(184, 138, 42, 0.28);
  box-shadow: 0 26px 70px rgba(0, 35, 70, 0.13);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 0;
  overflow: hidden;
}

.quick-booking-form label {
  min-height: 76px;
  padding: 15px 22px 14px;
  border-right: 1px solid rgba(0, 74, 143, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.quick-booking-form span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b88a2a;
  font-weight: 800;
}

.quick-booking-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: 700 16px var(--font-body);
  outline: none;
}

.quick-booking-form input::placeholder {
  color: rgba(0, 35, 70, 0.45);
}

.quick-booking-form button {
  min-height: 76px;
  border: 0;
  padding: 0 34px;
  background: var(--blue);
  color: #fff;
  font: 800 13px var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.quick-booking-form button:hover {
  background: var(--navy);
}

@media (max-width: 820px) {
  .quick-booking-bar {
    margin: -26px auto 38px;
    padding: 0 18px;
  }

  .quick-booking-form {
    grid-template-columns: 1fr;
  }

  .quick-booking-form label {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 74, 143, 0.12);
  }

  .quick-booking-form button {
    min-height: 64px;
    width: 100%;
  }
}

/* === BARRA RESERVA HOME - FINE === */


/* === NAV CTA LIGAR AGORA COMPATTO - INIZIO === */

.nav-cta {
  padding: 13px 22px !important;
  font-size: 12px !important;
  letter-spacing: 0.10em !important;
  border-radius: 999px !important;
  min-height: auto !important;
}

/* === NAV CTA LIGAR AGORA COMPATTO - FINE === */


/* === WHATSAPP FLOAT NASCOSTO SU MOBILE - INIZIO === */

@media (max-width: 700px) {
  .whatsapp-float {
    display: none !important;
  }
}

/* === WHATSAPP FLOAT NASCOSTO SU MOBILE - FINE === */


/* === TOP STRIP UNIFORME - INIZIO === */

.top-strip {
  min-height: 28px !important;
  padding: 6px 5vw !important;
  gap: clamp(18px, 4vw, 42px) !important;
  font-size: clamp(10px, 0.75vw, 12px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
}

.top-strip span,
.top-strip a {
  line-height: 1.2 !important;
}

@media (max-width: 700px) {
  .top-strip {
    padding: 8px 12px !important;
    gap: 6px !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }
}

/* === TOP STRIP UNIFORME - FINE === */


/* CHEF 4X5 DEFINITIVO - INICIO */
/* Sezione Chef in galeria.html: foto verticali 4:5 */
.gv2-grid.chef {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: start !important;
}

.gv2-grid.chef figure {
  aspect-ratio: 4 / 5 !important;
  max-height: none !important;
}

.gv2-grid.chef img,
.gv2-grid.chef figure:nth-child(2) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
/* CHEF 4X5 DEFINITIVO - FIM */


/* SEZIONE FOTO CLIENTE DUO - INICIO */
/* Nuova sezione in galeria.html: 2 foto cliente orizzontali, pulite e proporzionate */
.gv2-grid.cliente-duo {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.gv2-grid.cliente-duo figure {
  aspect-ratio: 3 / 2 !important;
  border-radius: 24px !important;
}

.gv2-grid.cliente-duo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 760px) {
  .gv2-grid.cliente-duo {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
  }

  .gv2-grid.cliente-duo figure {
    aspect-ratio: 3 / 2 !important;
  }
}
/* SEZIONE FOTO CLIENTE DUO - FIM */


/* CONTACTOS CHEF ELEGANTE - INICIO */
/* Sezione acolhimento in contactos.html: foto chef senza cappello + testo più elegante */
.contact-chef-welcome {
  max-width: 1120px !important;
  margin: 72px auto !important;
  padding: 34px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr) !important;
  gap: 46px !important;
  align-items: center !important;
  background:
    radial-gradient(circle at top left, rgba(0, 91, 181, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(255, 255, 255, 0.96)) !important;
  border: 1px solid rgba(0, 91, 181, 0.12) !important;
  border-radius: 34px !important;
  box-shadow: 0 28px 70px rgba(0, 31, 63, 0.10) !important;
}

.contact-chef-photo {
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 55px rgba(0, 31, 63, 0.18) !important;
}

.contact-chef-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 520px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.contact-chef-copy {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(0, 91, 181, 0.10) !important;
  border-radius: 28px !important;
  padding: 34px !important;
  box-shadow: 0 18px 45px rgba(0, 31, 63, 0.07) !important;
}

.contact-chef-copy h2 {
  max-width: 680px !important;
  margin-bottom: 18px !important;
}

.contact-chef-copy p:not(.eyebrow) {
  max-width: 660px !important;
  margin-bottom: 24px !important;
}

.contact-chef-copy .btn {
  margin-top: 4px !important;
}

@media (max-width: 900px) {
  .contact-chef-welcome {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 24px !important;
    margin: 52px 18px !important;
  }

  .contact-chef-photo img {
    min-height: auto !important;
    aspect-ratio: 4 / 5 !important;
  }

  .contact-chef-copy {
    padding: 26px !important;
  }
}

@media (max-width: 620px) {
  .contact-chef-welcome {
    border-radius: 28px !important;
    padding: 18px !important;
    margin: 42px 14px !important;
  }

  .contact-chef-photo {
    border-radius: 24px !important;
  }

  .contact-chef-copy {
    border-radius: 24px !important;
    padding: 22px !important;
  }

  .contact-chef-copy h2 {
    font-size: clamp(32px, 10vw, 46px) !important;
  }
}
/* CONTACTOS CHEF ELEGANTE - FIM */


/* HOME CHEF FOTO DEFINITIVA - INICIO */
/* Solo Home: foto chef ravvicinata nella sezione chef */
.chef-strip.chef-scroll-section .chef-photo {
  overflow: hidden !important;
}

.chef-strip.chef-scroll-section .chef-photo img {
  transform: scale(1.18) !important;
  transform-origin: center 20% !important;
}

.chef-strip.chef-scroll-section .chef-photo:hover img {
  transform: scale(1.22) !important;
}

@media (max-width: 900px) {
  .chef-strip.chef-scroll-section .chef-photo img {
    transform: scale(1.10) !important;
    transform-origin: center 18% !important;
  }

  .chef-strip.chef-scroll-section .chef-photo:hover img {
    transform: scale(1.12) !important;
  }
}
/* HOME CHEF FOTO DEFINITIVA - FIM */


/* FIX DEFINITIVO CONTACTOS MOBILE - INICIO */
/* contactos.html mobile: blocca cards, formulário, chef, QR e localização dentro dello schermo */
@media (max-width: 700px) {
  .contact-clean-hero,
  .contact-cards-clean,
  .reservation-clean,
  .contact-chef-welcome,
  .qr-location-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    grid-template-columns: minmax(0, 1fr) !important;
    overflow-x: hidden !important;
  }

  .contact-clean-hero,
  .contact-cards-clean,
  .reservation-clean,
  .qr-location-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .contact-clean-copy,
  .contact-clean-image,
  .contact-card-clean,
  .reservation-clean-copy,
  .reservation-form-clean,
  .contact-chef-photo,
  .contact-chef-copy,
  .qr-card,
  .location-card-clean,
  .location-address {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .contact-cards-clean {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .reservation-clean {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
    gap: 26px !important;
  }

  .reservation-form-clean {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 20px !important;
    gap: 14px !important;
    border-radius: 24px !important;
  }

  .reservation-form-clean label,
  .reservation-form-clean .full {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
  }

  .reservation-form-clean input,
  .reservation-form-clean textarea,
  .reservation-form-clean button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .reservation-form-clean textarea {
    resize: vertical !important;
  }

  .reservation-form-clean .btn,
  .contact-clean-hero .btn,
  .contact-chef-copy .btn,
  .location-card-clean .btn {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.25 !important;
  }

  .contact-chef-welcome {
    width: auto !important;
    max-width: calc(100% - 28px) !important;
    margin: 42px 14px !important;
    padding: 18px !important;
    gap: 22px !important;
  }

  .contact-chef-photo img {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
  }

  .contact-chef-copy {
    padding: 22px !important;
  }

  .qr-location-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
    gap: 22px !important;
  }

  .qr-card,
  .location-card-clean {
    padding: 24px 18px !important;
    border-radius: 26px !important;
  }

  .qr-image {
    width: 190px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .location-address,
  .location-address strong,
  .location-address span,
  .qr-card p,
  .location-card-clean p {
    overflow-wrap: anywhere !important;
  }
}
/* FIX DEFINITIVO CONTACTOS MOBILE - FIM */

