
:root {
  --bg: #1d1712;
  --bg-soft: #2b2119;
  --paper: #fff8ec;
  --cream: #f0dfc2;
  --sand: #d3ad74;
  --amber: #d7892d;
  --amber-dark: #a85f1f;
  --brown: #3a2416;
  --text: #2a1d15;
  --muted: #766655;
  --light: #fff2dc;
  --line: rgba(255, 242, 220, 0.16);
  --line-dark: #e2ceb0;
  --shadow: 0 24px 70px rgba(19, 12, 8, 0.28);
  --soft-shadow: 0 14px 34px rgba(42, 27, 17, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--light);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, 92%); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.18rem;
  border-radius: 999px;
  background: var(--amber);
  color: #1d1712;
  border: 2px solid var(--amber);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn:hover { background: #f0a13b; border-color: #f0a13b; transform: translateY(-1px); }
.btn-light { background: var(--paper); color: var(--text); border-color: var(--paper); }
.btn-light:hover { background: #fff; border-color: #fff; color: var(--text); }
.btn-outline { background: transparent; color: var(--paper); border-color: rgba(255, 242, 220, 0.42); }
.btn-outline:hover { background: rgba(255, 242, 220, 0.1); border-color: rgba(255, 242, 220, 0.62); }

.eyebrow {
  display: inline-flex;
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(29, 23, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: 1.18rem;
  line-height: 1.05;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), #f2bc63);
  color: #21150d;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(215, 137, 45, 0.22);
  flex: 0 0 auto;
}

.brand small {
  display: block;
  color: #d9c1a2;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #d9c1a2;
  font-weight: 750;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a.active { color: #fff4df; }

.menu-btn {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255, 242, 220, 0.1);
  color: var(--paper);
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29,23,18,0.94) 0%, rgba(29,23,18,0.73) 44%, rgba(29,23,18,0.28) 100%),
    linear-gradient(180deg, rgba(29,23,18,0.12) 0%, rgba(29,23,18,0.88) 100%),
    var(--hero-image, url('assets/hero-home.jpg')) center / cover no-repeat;
  padding: 5.4rem 0 2.7rem;
}

.hero.simple { min-height: 470px; padding: 5rem 0 3rem; }
.hero-content { max-width: 820px; position: relative; z-index: 2; }

h1 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 1.12rem;
  text-wrap: balance;
}

.hero-text {
  color: #ead3ae;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  max-width: 680px;
  margin-bottom: 1.55rem;
}

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 820px;
}

.hero-fact {
  border: 1px solid var(--line);
  background: rgba(255, 242, 220, 0.09);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.hero-fact strong { display: block; color: #fff4df; margin-bottom: 0.2rem; }
.hero-fact span { color: #d9c1a2; font-size: 0.92rem; }

.hero-card {
  position: absolute;
  right: min(4vw, 56px);
  bottom: 2.7rem;
  width: min(340px, 32vw);
  background: rgba(255, 248, 236, 0.96);
  color: var(--text);
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-card strong { display: block; margin-bottom: 0.25rem; }
.hero-card span { display: block; color: var(--muted); font-size: 0.92rem; }

section { padding: 4.4rem 0; }

.section-title { max-width: 800px; margin-bottom: 2rem; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title h2, .page-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 880;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-title p { color: var(--muted); font-size: 1.05rem; }
.dark-title p { color: #d3b996; }

.warm-section { background: var(--paper); color: var(--text); }
.dark-section { background: var(--bg); color: var(--light); }
.mid-section { background: var(--bg-soft); color: var(--light); }

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.6rem;
  align-items: center;
}

.copy-block h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 880;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}

.copy-block p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1rem; max-width: 640px; }
.dark-section .copy-block p, .mid-section .copy-block p { color: #d3b996; }

.grid-2, .grid-3, .grid-4, .menu-grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.menu-grid { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--soft-shadow);
  color: var(--text);
}

.dark-section .card, .mid-section .card {
  background: rgba(255, 242, 220, 0.08);
  border: 1px solid var(--line);
  color: #fff4df;
}

.card strong, .card h3 { display: block; margin-bottom: 0.25rem; }
.card p, .card span { color: var(--muted); font-size: 0.95rem; }

.dark-section .card p, .dark-section .card span,
.mid-section .card p, .mid-section .card span { color: #d3b996; }

.photo-main, .photo-side, .photo-card, .page-photo {
  background-color: #c9ad84;
  background-image: linear-gradient(135deg, #c9ad84, #fff4df);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.photo-main::after, .photo-side::after, .photo-card::after, .page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,23,18,0.02), rgba(29,23,18,0.18));
  pointer-events: none;
}

.photo-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  min-height: 520px;
}

.photo-main { min-height: 520px; }
.side-stack { display: grid; gap: 0.9rem; }
.photo-side { min-height: 255px; }
.page-photo { min-height: 500px; }

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.photo-card {
  min-height: 500px;
  display: flex;
  align-items: end;
  color: #fff;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,23,18,0.06) 0%, rgba(29,23,18,0.28) 42%, rgba(29,23,18,0.85) 100%);
  z-index: 1;
}

.photo-stack { display: grid; gap: 0.9rem; }
.photo-stack .photo-card { min-height: 245px; }

.photo-caption { position: relative; z-index: 2; padding: 1.2rem; }

.photo-caption span {
  color: #f7c66a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 0.78rem;
}

.photo-caption h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0.25rem 0;
}

.photo-caption p { color: #ecd8bd; max-width: 520px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 0.9rem;
  min-height: 560px;
}

.gallery-grid .photo-card { min-height: 270px; }
.gallery-grid .photo-card:nth-child(1) { grid-row: span 2; }

.promo-card {
  background: linear-gradient(135deg, #fff8ec, #f2d6a7);
  color: var(--text);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.promo-price {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}

.promo-price strong { font-size: 1.5rem; color: var(--amber-dark); white-space: nowrap; }

.menu-card { min-height: 155px; }
.menu-card h3 { color: #fff4df; font-size: 1.18rem; margin-bottom: 0.5rem; }
.menu-cta { display: flex; justify-content: center; margin-top: 1.4rem; }

.quiz-box {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.quiz-question {
  padding: 1rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  margin-bottom: 1rem;
}

.quiz-question h3 { margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.answers { display: grid; gap: 0.55rem; }

.answer-btn {
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.answer-btn:hover { border-color: var(--amber); background: #fff5e7; }
.answer-btn.correct { background: #e7f1d8; border-color: #94ad62; }
.answer-btn.wrong { background: #f6ded8; border-color: #c9806c; }

.quiz-result {
  color: var(--amber-dark);
  font-weight: 900;
  padding: 0 1rem 1rem;
}

.booking { background: var(--paper); color: var(--text); }

.booking-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: stretch;
}

.booking-info {
  color: #fff4df;
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(29,23,18,0.30), rgba(29,23,18,0.82)),
    var(--booking-image, url('assets/hero-home.jpg')) center / cover no-repeat;
}

.booking-info h2 {
  font-size: clamp(1.95rem, 3.8vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 880;
  margin-bottom: 0.7rem;
  text-wrap: balance;
}

.booking-info p { color: #ead3ae; max-width: 560px; }

.contact-box {
  background: rgba(29, 23, 18, 0.62);
  border: 1px solid rgba(255, 242, 220, 0.18);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  backdrop-filter: blur(10px);
}

.contact-box a, .contact-box span { color: #fff4df; }
.contact-box strong { color: #f7c66a; }

.hours { display: grid; gap: 0.25rem; color: #ead3ae; font-size: 0.92rem; }

.map-box {
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(29,23,18,0.1), rgba(215,137,45,0.18)), #e8d0a9;
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(157,79,45,0.22);
  border-radius: 24px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: var(--amber);
  color: #21150d;
  display: grid;
  place-items: center;
  font-weight: 950;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
}

.form-title { padding: 0.8rem 0.8rem 0.2rem; }

.form-title h3 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.028em;
  font-weight: 880;
  margin-bottom: 0.3rem;
}

.form-title p { color: var(--muted); }
form { display: grid; gap: 0.8rem; padding: 0.8rem; }
label { font-size: 0.92rem; font-weight: 850; color: var(--text); }

input, select, textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--text);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(215, 137, 45, 0.16);
}

textarea { min-height: 106px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.86rem; }
#formMessage { color: var(--amber-dark); font-weight: 900; }

.cta-band { background: var(--brown); color: #fff4df; padding: 3rem 0; }

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 760px;
}

footer {
  background: #130d09;
  color: #d3b996;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.92rem; }

.mobile-quick { display: none; }

@media (max-width: 1040px) {
  .split-layout, .booking-panel { grid-template-columns: 1fr; }
  .hero-card { position: relative; right: auto; bottom: auto; width: min(420px, 100%); margin-top: 1rem; }
  .hero-facts, .grid-4, .grid-3, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .photo-card:nth-child(1) { grid-row: auto; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem 4%;
    background: rgba(29, 23, 18, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.active { display: flex; }
  .menu-btn { display: grid; place-items: center; }
}

@media (max-width: 700px) {
  .nav { height: 62px; }
  .brand { font-size: 0.98rem; }
  .brand-mark { width: 36px; height: 36px; border-radius: 12px; }
  .nav-links { top: 62px; }
  .hero { min-height: auto; padding: 4rem 0 1.8rem; }
  .hero.simple { min-height: auto; padding: 3.6rem 0 2.2rem; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.35rem); letter-spacing: -0.04em; }
  section { padding: 3.2rem 0; }
  .hero-actions .btn, .menu-cta .btn, form .btn { width: 100%; }

  .hero-facts, .grid-2, .grid-3, .grid-4, .menu-grid, .showcase, .gallery-grid, .photo-layout {
    grid-template-columns: 1fr;
  }

  .photo-main, .page-photo, .photo-card, .booking-info { min-height: 350px; }
  .photo-side, .photo-stack .photo-card, .gallery-grid .photo-card { min-height: 220px; }
  .booking-info, .form-wrap { padding: 0.9rem; }
  .promo-price { flex-direction: column; gap: 0.35rem; }
  body { padding-bottom: 74px; }

  .mobile-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    background: rgba(29, 23, 18, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.65rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .mobile-quick a {
    min-height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: var(--amber);
    color: #21150d;
  }

  .mobile-quick a:last-child { background: var(--paper); color: var(--text); }
  .cta-inner { align-items: flex-start; }
}


.promo-poster {
  background: #120d09;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 137, 45, 0.34);
  min-height: 520px;
}

.promo-poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.game-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.game-main {
  min-height: 560px;
}

.game-mini-grid {
  display: grid;
  gap: 0.9rem;
}

.game-mini {
  min-height: 176px;
}

@media (max-width: 1040px) {
  .game-showcase {
    grid-template-columns: 1fr;
  }

  .game-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .game-main {
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .promo-poster,
  .promo-poster img {
    min-height: 430px;
  }

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

  .game-main,
  .game-mini {
    min-height: 280px;
  }
}


.menu-grid-visual {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.menu-card-visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 430px;
}

.menu-card-visual h3,
.menu-card-visual p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.menu-card-visual h3 {
  padding-top: 0.85rem;
}

.menu-card-visual p {
  padding-bottom: 0.65rem;
  flex: 1;
}

.menu-card-visual .card-link-label {
  margin-top: auto;
  padding: 0 1rem 1rem;
  align-self: flex-start;
}

.menu-card-photo,
.mini-card-photo {
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.menu-card-photo {
  height: 168px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.mini-card-photo {
  height: 128px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 242, 220, 0.14);
}

.visual-link-card {
  padding: 0.85rem;
}

.menu-card-photo::after,
.mini-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,23,18,0.02), rgba(29,23,18,0.22));
}

@media (max-width: 1040px) {
  .menu-grid-visual {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .menu-grid-visual {
    grid-template-columns: 1fr;
  }

  .menu-card-photo {
    height: 220px;
  }

  .menu-card-visual {
    min-height: 440px;
  }

  .mini-card-photo {
    height: 170px;
  }
}


/* Final booking block */
.home-final-booking .booking-panel {
  align-items: stretch;
}

.booking-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.booking-visual {
  min-height: 390px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.booking-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,10,0.08), rgba(20,14,10,0.58));
}

.booking-card-note {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 1rem;
  border-radius: 20px;
  color: #fff;
  background: rgba(20, 14, 10, 0.62);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.25rem;
}

.booking-card-note span {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

/* Fixed WhatsApp / Instagram quick links */
.fixed-social {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fixed-social-link {
  min-width: 132px;
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: #fff;
  background: rgba(30, 23, 18, 0.88);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
  text-align: center;
}

.fixed-social-link:hover {
  transform: translateY(-2px);
}

.fixed-social-link.whatsapp {
  background: linear-gradient(135deg, #1f8b4c, #25d366);
}

.fixed-social-link.instagram {
  background: linear-gradient(135deg, #2b211a, #d7892d);
}

@media (max-width: 720px) {
  .fixed-social {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.75rem;
    flex-direction: row;
  }

  .fixed-social-link {
    flex: 1;
    min-width: 0;
    padding: 0.74rem 0.7rem;
    font-size: 0.84rem;
  }

  body {
    padding-bottom: 4.4rem;
  }

  .booking-visual {
    min-height: 300px;
  }
}

/* Party Game mockup */
.party-hero .hero-text { max-width: 660px; }

.party-intro { padding-top: 4.5rem; }
.party-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}
.party-intro-grid h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #fff4df;
  margin-bottom: 1rem;
}
.party-intro-grid p { color: rgba(255, 242, 220, 0.78); max-width: 640px; }
.party-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.party-steps div {
  border: 1px solid rgba(255, 242, 220, 0.14);
  background: rgba(255, 242, 220, 0.055);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 118px;
}
.party-steps strong {
  display: block;
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}
.party-steps span { color: #fff4df; font-weight: 850; }

.party-game-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}
.party-phone-card,
.leaderboard-card,
.owner-actions-card,
.tech-note {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.party-phone-card {
  background: linear-gradient(145deg, #21170f, #3a2416);
  border: 1px solid rgba(215, 137, 45, 0.34);
  padding: 1rem;
  color: #fff4df;
}
.phone-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 242, 220, 0.78);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.phone-topline strong { color: var(--amber); }
.join-panel {
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 242, 220, 0.15);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1rem;
}
.join-panel label {
  display: block;
  font-weight: 900;
  margin-bottom: 0.55rem;
}
.join-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}
.join-row input {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 242, 220, 0.24);
  background: rgba(255, 248, 236, 0.96);
  color: var(--text);
  padding: 0 1rem;
  outline: none;
}
.party-note,
.answer-feedback,
.owner-actions-card p,
.leaderboard-card p {
  color: rgba(255, 242, 220, 0.72);
  font-size: 0.94rem;
}
.party-note { margin-top: 0.7rem; }

.quiz-live-card {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  padding: 1.15rem;
}
.quiz-live-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.7rem;
}
.progress-label,
.team-pill {
  font-weight: 900;
  font-size: 0.88rem;
}
.team-pill {
  color: var(--amber-dark);
  background: #f4dfbb;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.progress-track {
  height: 10px;
  border-radius: 999px;
  background: #e8d4b2;
  overflow: hidden;
  margin-bottom: 1.05rem;
}
.progress-track span {
  display: block;
  width: 3.33%;
  height: 100%;
  background: var(--amber);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.quiz-live-card h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}
.live-answers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.live-answers button {
  min-height: 58px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 0.9rem;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
  transition: 0.18s ease;
}
.live-answers button:hover { border-color: var(--amber); background: #fff5e7; }
.live-answers button.is-correct { background: #e7f1d8; border-color: #94ad62; }
.live-answers button.is-wrong { background: #f6ded8; border-color: #c9806c; }
.answer-feedback { color: var(--muted); margin-top: 0.9rem; font-weight: 750; }

.leaderboard-card {
  background: linear-gradient(145deg, #fff8ec, #ead0a3);
  color: var(--text);
  border: 1px solid var(--line-dark);
  padding: 1.3rem;
}
.leaderboard-card h3 {
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 0.6rem;
}
.leaderboard-card p { color: var(--muted); margin-bottom: 1rem; }
.leaderboard-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  counter-reset: none;
}
.leaderboard-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(58, 36, 22, 0.12);
  border-radius: 18px;
  padding: 0.9rem;
  font-weight: 900;
}
.leaderboard-list li:first-child {
  background: #2b2119;
  color: #fff4df;
  border-color: rgba(215, 137, 45, 0.5);
}
.leaderboard-list span { display: inline-flex; align-items: center; gap: 0.65rem; }
.leaderboard-list strong {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: #21150d;
}
.leaderboard-list b { color: var(--amber-dark); white-space: nowrap; }
.leaderboard-list li:first-child b { color: var(--amber); }

.owner-demo { padding: 4.5rem 0; }
.owner-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}
.owner-panel h2,
.tech-note h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.owner-panel p { color: var(--muted); max-width: 720px; }
.owner-actions-card {
  background: var(--bg-soft);
  color: #fff4df;
  border: 1px solid rgba(215, 137, 45, 0.28);
  padding: 1rem;
}
.room-code {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 242, 220, 0.16);
  padding: 1rem;
}
.room-code span { color: rgba(255, 242, 220, 0.72); }
.room-code strong { color: var(--amber); font-size: 1.4rem; }

.tech-note-section { padding-top: 0; }
.tech-note {
  background: rgba(255, 242, 220, 0.055);
  border: 1px solid rgba(255, 242, 220, 0.14);
  padding: 1.25rem;
}
.tech-note h2 { color: #fff4df; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.tech-grid span {
  border-radius: 16px;
  border: 1px solid rgba(255, 242, 220, 0.13);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 242, 220, 0.82);
  padding: 0.85rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .party-intro-grid,
  .party-game-layout,
  .owner-panel {
    grid-template-columns: 1fr;
  }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .party-steps,
  .live-answers,
  .join-row,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .join-row .btn { width: 100%; }
  .party-phone-card,
  .leaderboard-card,
  .owner-actions-card,
  .tech-note { border-radius: 22px; }
}

.quiz-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.dark-btn {
  color: inherit;
}

.quiz-actions-row .dark-btn,
.leaderboard-card .dark-btn {
  border-color: rgba(58, 36, 22, 0.25);
  color: var(--text);
}

.admin-owner-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.admin-warning {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(215, 137, 45, 0.12);
  border: 1px solid rgba(215, 137, 45, 0.25);
  font-weight: 750;
}

.admin-card label {
  display: block;
  color: #fff4df;
  font-weight: 900;
  margin: 0.85rem 0 0.4rem;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  border: 1px solid rgba(255, 242, 220, 0.22);
  background: rgba(255, 248, 236, 0.96);
  color: var(--text);
  border-radius: 18px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  outline: none;
}

.admin-card textarea {
  resize: vertical;
  min-height: 94px;
}

.admin-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.admin-card #adminStatus {
  margin-top: 0.85rem;
}

.live-answers button:disabled {
  cursor: default;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .admin-owner-panel,
  .admin-answer-grid {
    grid-template-columns: 1fr;
  }
}


.management-login {
  border-radius: 20px;
  border: 1px solid rgba(215, 137, 45, 0.28);
  background: rgba(215, 137, 45, 0.1);
  padding: 1rem;
}

.management-password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.management-login-note {
  margin-top: 0.75rem !important;
  color: rgba(255, 242, 220, 0.72) !important;
  font-size: 0.94rem;
}

.management-tools {
  display: grid;
  gap: 1rem;
}

.management-tools.is-locked {
  display: none;
}

@media (max-width: 720px) {
  .management-password-row {
    grid-template-columns: 1fr;
  }

  .management-password-row .btn {
    width: 100%;
  }
}

/* Party Game storage/admin update */
.storage-admin-card {
  display: grid;
  gap: 1rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.admin-stats-grid div {
  border-radius: 18px;
  border: 1px solid rgba(255, 242, 220, 0.16);
  background: rgba(255, 248, 236, 0.08);
  padding: 0.9rem;
}

.admin-stats-grid span,
.admin-stats-grid small {
  display: block;
  color: rgba(255, 242, 220, 0.68);
  font-weight: 800;
}

.admin-stats-grid strong {
  display: block;
  color: var(--amber);
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1;
  margin: 0.28rem 0;
  letter-spacing: -0.05em;
}

.strong-actions {
  align-items: center;
}

.strong-actions .btn:first-child {
  min-width: 170px;
}

.danger-btn {
  border-color: rgba(255, 105, 82, 0.5) !important;
  color: #ffd7cf !important;
  background: rgba(120, 22, 10, 0.18) !important;
}

.danger-btn:hover {
  background: rgba(170, 45, 28, 0.28) !important;
}

.leaderboard-list small {
  color: rgba(58, 36, 22, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
}


.active-questions-preview {
  border-radius: 20px;
  border: 1px solid rgba(255, 242, 220, 0.16);
  background: rgba(0, 0, 0, 0.15);
  padding: 1rem;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.preview-head strong {
  color: #fff4df;
}

.preview-head span {
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.active-questions-preview ol {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
  color: rgba(255, 242, 220, 0.82);
  font-weight: 760;
}

.active-questions-preview li::marker {
  color: var(--amber);
  font-weight: 900;
}

@media (max-width: 720px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .strong-actions .btn {
    width: 100%;
  }

  .preview-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Reviews */
.reviews-section { border-top: 1px solid rgba(255, 242, 220, 0.08); border-bottom: 1px solid rgba(255, 242, 220, 0.08); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-lg); border: 1px solid rgba(215, 137, 45, 0.22); background: linear-gradient(145deg, rgba(255, 242, 220, 0.08), rgba(255, 242, 220, 0.045)); color: #fff4df; padding: 1.15rem; box-shadow: 0 18px 44px rgba(0,0,0,0.18); }
.review-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.85rem; }
.review-head strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.review-head span { color: var(--amber); letter-spacing: 0.04em; white-space: nowrap; font-size: 0.92rem; }
.review-card p { color: #d9c1a2; font-size: 0.96rem; }
.reviews-actions { display: flex; justify-content: center; margin-top: 1.4rem; }
@media (max-width: 1040px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } .review-card { min-height: auto; } }

/* Logo reale + tricolore sobrio */
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand-text > span {
  color: #fff4df;
}

.brand-text small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 0.1rem;
}

.flag-green { color: #74a86b; }
.flag-white { color: #efe6d7; }
.flag-red { color: #c76a5e; }

/* Menu completo e card cliccabili */
.clickable-card {
  display: block;
  min-height: 100%;
  position: relative;
}

.clickable-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 137, 45, 0.48);
  box-shadow: 0 24px 54px rgba(0,0,0,0.2);
}

.card-link-label {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--amber);
  font-weight: 900;
  font-size: 0.9rem;
}

.menu-complete-cta {
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 242, 220, 0.16);
  background: rgba(255, 242, 220, 0.05);
  text-align: center;
}

.menu-complete-cta p {
  margin-top: 0.8rem;
  color: rgba(255, 242, 220, 0.72);
}

.btn-large {
  min-height: 54px;
  padding-inline: 1.55rem;
  font-size: 1.02rem;
}

.menu-jump-actions {
  flex-wrap: wrap;
}

.menu-zoom-section {
  scroll-margin-top: 88px;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  border-bottom: 1px solid rgba(255, 242, 220, 0.08);
}

.menu-crop-frame {
  position: relative;
  width: min(1120px, 100%);
  margin: 1.6rem auto 0;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 242, 220, 0.18);
  background: #101010;
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  -webkit-overflow-scrolling: touch;
}

.menu-crop-frame img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.full-menu-pages {
  scroll-margin-top: 88px;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.full-menu-grid a {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(42, 29, 21, 0.15);
  box-shadow: var(--soft-shadow);
  background: #111;
}

.full-menu-grid img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text small {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .menu-crop-frame {
    width: 100%;
    border-radius: 20px;
  }

  .menu-crop-frame img {
    width: auto;
    min-width: 760px;
  }

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

.offer-poster-full {
  background: #120d09;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: auto;
}

.offer-poster-full::after { display: none; }

.offer-poster-full img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

/* Mobile-first final polish: solo rifiniture responsive */
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  header {
    backdrop-filter: blur(16px);
  }

  .nav {
    height: 60px;
  }

  .brand {
    gap: 0.58rem;
    min-width: 0;
  }

  .brand-text > span {
    font-size: 0.98rem;
    line-height: 1;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .nav-links {
    top: 60px;
    gap: 0.15rem;
    padding: 0.75rem 14px 0.95rem;
  }

  .nav-links a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    padding: 0 0.85rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 242, 220, 0.08);
  }

  .nav-links .btn {
    margin-top: 0.3rem;
    min-height: 48px;
  }

  .hero,
  .hero.simple {
    padding: 3.25rem 0 2rem;
    background-position: center;
  }

  .hero.simple {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2rem, 10.2vw, 2.95rem);
    line-height: 0.98;
    margin-bottom: 0.9rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.15rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-bottom: 1.2rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.82rem 1rem;
    white-space: normal;
    text-align: center;
  }

  .section-title,
  .section-title.center {
    margin-bottom: 1.35rem;
  }

  .section-title h2,
  .page-title,
  .copy-block h2,
  .party-intro-grid h2,
  .owner-panel h2,
  .tech-note h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.55rem);
    line-height: 1.04;
  }

  .section-title p,
  .copy-block p {
    font-size: 1rem;
  }

  section {
    padding: 2.75rem 0;
  }

  .card,
  .promo-card,
  .quiz-box,
  .form-wrap,
  .booking-info,
  .leaderboard-card,
  .party-phone-card,
  .owner-actions-card,
  .tech-note {
    border-radius: 22px;
  }

  .photo-layout,
  .showcase,
  .gallery-grid,
  .game-showcase {
    gap: 0.75rem;
  }

  .photo-main,
  .page-photo,
  .photo-card,
  .booking-info {
    min-height: 310px;
  }

  .photo-side,
  .photo-stack .photo-card,
  .gallery-grid .photo-card,
  .game-main,
  .game-mini {
    min-height: 230px;
  }

  .photo-caption {
    padding: 1rem;
  }

  .photo-caption h3 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .menu-card-visual {
    min-height: auto;
  }

  .menu-card-visual p {
    flex: 0 0 auto;
  }

  .menu-card-visual .card-link-label {
    min-height: 44px;
    align-items: center;
    margin-top: 0.35rem;
  }

  .menu-card-photo {
    height: 190px;
  }

  .menu-complete-cta {
    padding: 1.05rem;
    margin-top: 1.4rem;
  }

  .btn-large {
    width: 100%;
    min-height: 52px;
  }

  .menu-crop-frame,
  .full-menu-grid a {
    border-radius: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-crop-frame img,
  .full-menu-grid img {
    width: auto;
    min-width: 760px;
    max-width: none;
  }

  .menu-zoom-section {
    scroll-margin-top: 76px;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .offer-poster-full img {
    border-radius: 22px;
  }

  .promo-poster,
  .promo-poster img {
    min-height: auto;
  }

  .booking-panel {
    gap: 0.85rem;
  }

  .booking-info {
    min-height: 360px;
  }

  .contact-box {
    gap: 0.55rem;
  }

  form {
    gap: 0.75rem;
    padding: 0.7rem;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  textarea {
    min-height: 112px;
  }

  .party-intro {
    padding-top: 2.75rem;
  }

  .party-steps div {
    min-height: auto;
    padding: 0.9rem;
  }

  .party-phone-card {
    padding: 0.85rem;
  }

  .phone-topline,
  .quiz-live-head {
    gap: 0.5rem;
  }

  .quiz-live-card {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .quiz-live-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
    line-height: 1.12;
  }

  .live-answers {
    gap: 0.55rem;
  }

  .live-answers button {
    min-height: 56px;
    padding: 0.82rem;
    border-radius: 16px;
  }

  .leaderboard-list li {
    align-items: flex-start;
    padding: 0.8rem;
  }

  .management-login,
  .active-questions-preview {
    padding: 0.85rem;
  }

  .admin-actions,
  .quiz-actions-row {
    gap: 0.55rem;
  }

  .admin-actions .btn,
  .quiz-actions-row .btn {
    width: 100%;
  }

  .reviews-grid {
    gap: 0.75rem;
  }

  .review-card {
    padding: 1rem;
  }

  .cta-band {
    padding: 2.25rem 0;
  }

  .footer-inner {
    display: grid;
    gap: 0.45rem;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .fixed-social {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .fixed-social-link {
    flex: initial;
    min-width: 112px;
    min-height: 44px;
    padding: 0.72rem 0.85rem;
  }

  body {
    padding-bottom: 4.25rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .brand-text > span {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.52rem;
    letter-spacing: 0.065em;
  }

  h1 {
    font-size: clamp(1.9rem, 10.8vw, 2.55rem);
  }

  .hero,
  .hero.simple {
    padding-top: 2.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .photo-main,
  .page-photo,
  .photo-card,
  .booking-info {
    min-height: 285px;
  }

  .menu-card-photo {
    height: 176px;
  }

  .menu-crop-frame img,
  .full-menu-grid img {
    min-width: 700px;
  }

  .fixed-social-link {
    min-width: 102px;
    font-size: 0.82rem;
  }
}

/* Micro-fix finale: nel menu intero le pagine devono partire a vista completa su mobile.
   Gli zoom restano solo nelle sezioni dedicate Birre/Drink/Aperitivi/Panini. */
@media (max-width: 760px) {
  #menu-intero .full-menu-grid a {
    overflow: hidden;
  }

  #menu-intero .full-menu-grid img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  #menu-intero .full-menu-grid img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
