/* ============================================================
   DA MARIO — Pizzeria V1
   Style: Napoli Classico — Bold, warm, Italian family trattoria
   Mobile-first: base = mobile, min-width = larger screens
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Barlow+Condensed:wght@400;600;700;800&display=swap");

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

:root {
  --red: #cc1a1a;
  --red2: #e02020;
  --red3: #f03030;
  --cream: #ffffff;
  --cream2: #f4f9f4;
  --cream3: #e8f2e8;
  --black: #0a0a0a;
  --black2: #141414;
  --black3: #1c1c1c;
  --green: #1a6b2a;
  --green2: #228833;
  --green3: #2ea842;
  --amber: #d4880c;
  --amber2: #f0a820;
  --muted: #446644;
  --muted2: #88aa88;
  --line: rgba(26, 107, 42, 0.2);
  --line2: rgba(26, 107, 42, 0.35);
  --serif: "Playfair Display", Georgia, serif;
  --cond: "Barlow Condensed", sans-serif;
  --sans: "Barlow", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: var(--cream);
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
}

/* Paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 60px;
}
@media (min-width: 768px) {
  .header-top {
    padding: 0 2.5rem;
    height: 68px;
  }
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-main span {
  color: var(--red3);
  font-style: italic;
}
.logo-sub {
  font-family: var(--cond);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

@media (min-width: 768px) {
  .logo-main {
    font-size: 1.6rem;
  }
}

.nav {
  display: none;
  align-items: center;
}
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: var(--cream);
}
.nav a.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  margin-left: 0.5rem;
  padding: 0.45rem 1.25rem;
  transition: background 0.2s;
}
.nav a.nav-cta:hover {
  background: var(--red2);
}

/* Italian flag stripe */
.header-stripe {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--green2) 33.3%,
    var(--cream) 33.3% 66.6%,
    var(--red) 66.6%
  );
  display: none;
}
@media (min-width: 768px) {
  .header-stripe {
    display: block;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.lang-btn {
  font-family: var(--cond);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.28rem 0.65rem;
  color: var(--muted2);
  transition: all 0.2s;
  min-width: 36px;
  min-height: 32px;
}
.lang-btn.active {
  background: var(--red);
  color: var(--cream);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0;
}
.mobile-nav a:hover {
  color: var(--red3);
}
.mobile-nav .lang-toggle {
  margin-top: 1.5rem;
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 1.25rem 3rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 88px 2.5rem 4rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background-image: url("https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=900&q=85&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
}

/* Hero background photo */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(0.3) contrast(1.1);
}
/* No photo: shows the diagonal shape only */

.hero-flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.6s 0.1s forwards;
}
.hero-flag-tag-bar {
  display: flex;
  height: 14px;
  overflow: hidden;
  border-radius: 2px;
}
.hero-flag-tag-bar span {
  display: block;
  width: 6px;
}
.hero-flag-tag-bar .g {
  background: var(--green2);
}
.hero-flag-tag-bar .w {
  background: var(--cream2);
}
.hero-flag-tag-bar .r {
  background: var(--red);
}
.hero-flag-tag-text {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted2);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.8rem, 12vw, 9rem);
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: slideUp 0.7s 0.25s forwards;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--red3);
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--cream2);
  color: transparent;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-style: italic;
  color: var(--cream3);
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideUp 0.7s 0.45s forwards;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.7s 0.6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: slideUp 0.7s 0.9s forwards;
}
.hero-scroll span {
  font-family: var(--cond);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  display: none !important;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 0.85rem 2rem;
  border: 2px solid;
  transition: all 0.2s;
  min-height: 44px;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}
.btn-red:hover {
  background: var(--red2);
  border-color: var(--red2);
}
.btn-cream {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}
.btn-cream:hover {
  background: var(--cream2);
  border-color: var(--cream2);
}
.btn-outline-cream {
  background: transparent;
  border-color: var(--cream2);
  color: var(--cream);
}
.btn-outline-cream:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-outline-red {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--cream);
}

/* ─── SECTION ─── */
.section {
  padding: 4rem 1.25rem;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 8rem 2.5rem;
  }
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.bg-black {
  background: var(--black);
  color: var(--cream);
}
.bg-black2 {
  background: var(--black2);
  color: var(--cream);
}
.bg-cream2 {
  background: var(--cream2);
}
.bg-red {
  background: var(--red);
  color: var(--cream);
}

.section-eyebrow {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-title .italic {
  font-style: italic;
}
.section-title .red {
  color: var(--red3);
}
.section-title .light {
  font-weight: 400;
  font-style: italic;
}
.section-title-dark {
  color: var(--black);
}
.section-title-light {
  color: var(--cream);
}

.section-lead {
  font-family: var(--sans);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}
.section-lead-light {
  color: var(--muted2);
}

/* ─── STORY / ABOUT ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }
}

.story-img {
  position: relative;
}
.story-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream3);
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Real photo: .story-img-frame img { width:100%; height:100%; object-fit:cover; display:block; } */
.story-img-ph {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--muted2);
  opacity: 0.4;
}
.story-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  padding: 0.5rem 1rem;
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.story-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--red);
  z-index: -1;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story-text p {
  font-size: 1rem;
  color: var(--black3);
  line-height: 1.85;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line2);
  border: 1px solid var(--line2);
  margin-top: 1rem;
}
.story-stat {
  background: var(--cream);
  padding: 1.25rem 0.75rem;
  text-align: center;
}
.story-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--cond);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ─── MENU ─── */
.menu-section {
  background: var(--black);
}

.menu-category-nav {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 2px;
  margin-bottom: 0;
  scrollbar-width: none;
  padding-bottom: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.menu-category-nav::-webkit-scrollbar {
  display: none;
}

.menu-cat-btn {
  flex-shrink: 0;
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  min-height: 44px;
  white-space: nowrap;
}
.menu-cat-btn:hover {
  color: var(--cream2);
}
.menu-cat-btn.active {
  color: var(--red3);
  border-bottom-color: var(--red3);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 700px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background: var(--black2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
  position: relative;
}
.menu-card:hover {
  background: var(--black3);
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s ease;
}
.menu-card:hover::before {
  height: 100%;
}

.menu-card-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.menu-card-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted2);
  line-height: 1.5;
  flex: 1;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.menu-card-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.menu-tag {
  font-family: var(--cond);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid rgba(192, 40, 26, 0.4);
  color: var(--red3);
}
.menu-tag.green {
  border-color: rgba(42, 96, 48, 0.5);
  color: var(--green3);
}
.menu-card-price {
  font-family: var(--cond);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--amber2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  max-width: 900px;
  margin: 2rem auto 0;
  gap: 3px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 200px 200px !important;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .gallery-item:nth-child(6) {
    grid-column: span 1 !important;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  background: var(--cream3);
}
.gallery-ph {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.2s;
}
.gallery-item:hover .gallery-ph {
  background: var(--cream2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-ph-icon {
  font-size: 2rem;
  opacity: 0.4;
}
.gallery-ph-label {
  font-family: var(--cond);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 4, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-inner {
  text-align: center;
  padding: 1rem;
}
.gallery-overlay-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}
.gallery-overlay-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--red3);
  stroke-width: 2;
}
.gallery-overlay-label {
  font-family: var(--cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18, 10, 4, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  border: none;
  cursor: pointer;
  color: var(--cream);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: var(--red2);
}
.lightbox-content {
  max-width: 880px;
  width: 100%;
  border: 2px solid var(--red);
  aspect-ratio: 4/3;
  background: var(--black2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ─── SPECIALS BANNER ─── */
.specials-banner {
  background: var(--red);
  padding: 1.5rem 1.25rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .specials-banner {
    padding: 2rem 2.5rem;
  }
}
.specials-ticker-wrap {
  overflow: hidden;
}
.specials-ticker {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: tickerMove 120s linear infinite !important;
  width: max-content;
}
.specials-ticker span {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2rem;
}
.specials-ticker span::after {
  content: " ✦ ";
  opacity: 0.5;
}
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── EVENTS ─── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  background: var(--cream2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
@media (min-width: 600px) {
  .event-row {
    grid-template-columns: 88px 1fr auto;
  }
}
.event-row:hover {
  border-color: var(--red);
}

.event-date {
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  text-align: center;
}
.event-day {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}
.event-mon {
  font-family: var(--cond);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 243, 232, 0.7);
}
.event-body {
  padding: 1.1rem 1.25rem;
}
.event-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.event-desc {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.event-pill-col {
  display: none;
  align-items: center;
  padding: 0 1.25rem;
}
@media (min-width: 600px) {
  .event-pill-col {
    display: flex;
  }
}
.event-pill {
  font-family: var(--cond);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--line2);
  color: var(--muted);
  white-space: nowrap;
}
.event-pill.special {
  border-color: var(--red);
  color: var(--red);
}

/* ─── BOOKING ─── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1.1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted2);
  display: block;
  margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  min-height: 44px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red3);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(250, 243, 232, 0.2);
  font-style: italic;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f04535' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option {
  background: var(--black2);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-block {
}
.info-block-head {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  gap: 1rem;
  min-height: 36px;
}
.info-row:last-child {
  border-bottom: none;
}
.info-row-k {
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.info-row-v {
  color: var(--cream2);
  text-align: right;
  font-style: italic;
  font-size: 0.9rem;
}

.wa-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  text-decoration: none;
  transition: all 0.2s;
  min-height: 44px;
}
.wa-cta:hover {
  background: rgba(37, 211, 102, 0.14);
}
.wa-cta svg {
  width: 28px;
  height: 28px;
  fill: #25d366;
  flex-shrink: 0;
}
.wa-label {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ade80;
}
.wa-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted2);
  margin-top: 1px;
}

.booking-ok {
  display: none;
  text-align: center;
  padding: 4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.booking-ok-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.booking-ok h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.booking-ok p {
  color: var(--muted2);
  font-style: italic;
}

/* ─── REVIEWS ─── */
.reviews-wrap {
  overflow: hidden;
  margin: 0 -1.25rem;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
@media (min-width: 768px) {
  .reviews-wrap {
    margin: 0 -2.5rem;
  }
}
.reviews-track {
  display: flex;
  gap: 3px;
  animation: marquee 200s linear infinite !important;
  width: max-content;
  padding: 0.5rem 1.25rem;
}
.reviews-track:hover {
  animation-play-state: paused;
}
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--cream2);
  padding: 1.5rem;
  border: 1px solid var(--line2);
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .review-card {
    width: 340px;
  }
}
.review-card:hover {
  background: var(--cream);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.review-stars span {
  color: var(--red);
  font-size: 0.85rem;
}
.review-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--black3);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 34px;
  height: 34px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cream);
}
.review-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}
.review-platform {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ─── MAP ─── */
.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line2);
}
@media (min-width: 900px) {
  .map-layout {
    grid-template-columns: 320px 1fr;
  }
}

.map-sidebar {
  padding: 2rem 1.5rem;
  background: var(--cream2);
  border-bottom: 1px solid var(--line2);
}
@media (min-width: 900px) {
  .map-sidebar {
    border-bottom: none;
    border-right: 1px solid var(--line2);
  }
}
.map-sidebar h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.map-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  min-height: 44px;
}
.map-row:last-of-type {
  border-bottom: none;
}
.map-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--cream);
}
.map-key {
  font-family: var(--cond);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1px;
}
.map-val {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--black3);
  font-style: italic;
}
.map-embed {
  min-height: 320px;
  position: relative;
  background: var(--cream3);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .map-embed {
    min-height: 400px;
  }
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.05);
}
.map-ph {
  text-align: center;
}
.map-ph-icon {
  font-size: 3rem;
  opacity: 0.2;
}
.map-ph-label {
  font-family: var(--cond);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 0.5rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  color: var(--cream);
  border-top: 3px solid var(--red);
  padding: 3rem 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 2.5rem 2rem;
  }
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-brand .logo-main {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--cond);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
  font-style: italic;
}
.footer-col a:hover {
  color: var(--cream2);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-copy {
  font-family: var(--cond);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-copy a {
  color: var(--amber2);
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 2px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}
.footer-social a:hover svg {
  stroke: var(--cream);
}

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: waPop 2.5s ease-in-out infinite !important;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  animation: none;
}
.wa-float svg {
  width: 27px;
  height: 27px;
  fill: white;
}
@keyframes waPop {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.55),
      0 4px 16px rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow:
      0 0 0 15px rgba(37, 211, 102, 0),
      0 4px 20px rgba(37, 211, 102, 0.2);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 4px 16px rgba(37, 211, 102, 0.35);
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ══ REVEAL ALWAYS VISIBLE ══ */
.reveal,
.reveal-d1,
.reveal-d2,
.reveal-d3 {
  opacity: 1 !important;
  transform: none !important;
}

/* ══ FULL PALETTE: verde, blanco, negro, rojo ══ */
body {
  background: #ffffff !important;
  color: #111111 !important;
}

/* Hero — verde oscuro de fondo */
.hero {
  background-color: #0d2b14 !important;
}
.hero-eyebrow,
.hero-tag {
  color: #2ea842 !important;
}
.hero-title,
.hero h1 {
  color: #ffffff !important;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.85) !important;
}
.hero .italic.red {
  color: #cc1a1a !important;
}
.hero .italic.green {
  color: #2ea842 !important;
}

/* Nav */
.header-top {
  background: #ffffff !important;
  border-bottom: 2px solid #228833 !important;
}
.brand-name {
  color: #0a0a0a !important;
  font-style: italic;
}
.brand-sub {
  color: #228833 !important;
}
.nav a {
  color: #333333 !important;
}
.nav a:hover,
.nav a.active {
  color: #1a6b2a !important;
}
.nav-cta {
  background: #cc1a1a !important;
  color: #ffffff !important;
}
.hamburger span {
  background: #0a0a0a !important;
}
.mobile-nav {
  background: #ffffff !important;
}
.mobile-nav a {
  color: #111111 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Specials ticker */
.specials-ticker-wrap {
  background: #1a6b2a !important;
}
.specials-ticker span {
  color: #ffffff !important;
}

/* Story */
#story,
.story-section {
  background: #f4f9f4 !important;
}
.story-text h2,
.story-text .section-title {
  color: #0a0a0a !important;
}
.story-text .lead,
.story-text p {
  color: #333333 !important;
}
.story-stats .stat-num {
  color: #1a6b2a !important;
}

/* Menu */
#menu,
.menu-section {
  background: #ffffff !important;
}
.menu-cat-btn {
  color: #555555 !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  background: #ffffff !important;
}
.menu-cat-btn.active {
  background: #1a6b2a !important;
  color: #ffffff !important;
  border-color: #1a6b2a !important;
}
.menu-card,
.pizza-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.menu-card-name,
.pizza-name {
  color: #111111 !important;
}
.menu-card-desc,
.pizza-desc {
  color: #555555 !important;
}
.menu-card-price,
.pizza-price {
  color: #cc1a1a !important;
}
.section-title,
.section-title-dark {
  color: #0a0a0a !important;
}
.section-title-light {
  color: #ffffff !important;
}
.section-eyebrow {
  color: #228833 !important;
}
.section-lead {
  color: #444444 !important;
}

/* Gallery */
#gallery {
  background: #f4f9f4 !important;
}
.gallery-grid {
  background: transparent !important;
}

/* Events */
#events {
  background: #ffffff !important;
}
.event-card {
  background: #f4f9f4 !important;
  border: 1px solid rgba(34, 136, 51, 0.2) !important;
}
.event-title {
  color: #0a0a0a !important;
}
.event-desc {
  color: #444444 !important;
}
.event-day,
.event-date {
  color: #555555 !important;
}
.event-tag {
  background: #228833 !important;
  color: #ffffff !important;
}
.event-tag--live {
  background: #cc1a1a !important;
}

/* Book */
#book {
  background: #f4f9f4 !important;
}
#book .section-title {
  color: #0a0a0a !important;
}
#book p {
  color: #444444 !important;
}

/* Reviews */
#reviews {
  background: #0a0a0a !important;
}
#reviews .section-title {
  color: #ffffff !important;
}
#reviews .section-eyebrow {
  color: #2ea842 !important;
}
.review-card {
  background: #1c1c1c !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.review-card * {
  color: rgba(255, 255, 255, 0.75) !important;
}
.review-author,
.review-card strong {
  color: #ffffff !important;
}
.review-stars {
  color: #f0a820 !important;
}

/* Location */
#location {
  background: #f4f9f4 !important;
}
#location .section-title {
  color: #0a0a0a !important;
}
#location p,
#location span,
#location a {
  color: #444444 !important;
}

/* Footer */
footer,
.footer {
  background: #0a0a0a !important;
}
footer *,
.footer * {
  color: rgba(255, 255, 255, 0.65) !important;
}
footer .brand-name,
.footer .brand-name {
  color: #ffffff !important;
}
footer a:hover {
  color: #2ea842 !important;
}

/* ══ GALLERY DEFINITIVE FIX ══ */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: 200px 200px !important;
  gap: 6px !important;
  max-width: 900px !important;
  margin: 2rem auto 0 !important;
  width: 100% !important;
}
.gallery-grid .gallery-item {
  height: 200px !important;
  min-height: unset !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-label {
  color: #ffffff;
  font-family: var(--cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Hero photo */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
