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

:root {
  --bg:          #ece4d2;
  --surface:     #e2d9c2;
  --card:        #f2ead7;
  --border:      #c8bda2;
  --orange:      #b8400f;
  --orange-hover:#9c350c;
  --orange-rgb:  184, 64, 15;
  --amber:       #a06b14;
  --amber-rgb:   160, 107, 20;
  --text:        #2a2218;
  --muted:       #6e6353;
  --radius:      12px;
  --nav-bg:      rgba(236,228,210,0.9);
  --hero-grad-1: rgba(20,15,8,0.5);
  --hero-grad-2: rgba(20,15,8,0.3);
  --hero-grad-3: rgba(20,15,8,0.75);
  --map-filter:  sepia(.15) saturate(.9) brightness(.98);
  --shadow-lg:   0 12px 32px rgba(60,40,20,.14);
  --overlay-soft: rgba(60,40,20,0.06);
  --overlay-soft-hover: rgba(60,40,20,0.1);
  --overlay-soft-border: rgba(60,40,20,0.14);
}

/* Offset anchor jumps so sections land below the fixed 68px navbar
   instead of tucking under it. */
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 5%;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
nav.scrolled { border-color: var(--border); }

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.btn-call {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-call svg { width: 14px; height: 14px; flex: none; }
.btn-call:hover { background: var(--surface); border-color: var(--muted); transform: translateY(-1px); }
.contact-tile-icon svg { width: 20px; height: 20px; color: var(--orange); display: block; }
.nav-drawer-call .icon svg { width: 18px; height: 18px; display: block; }

.btn-order {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  position: relative;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.btn-order:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-order .chevron {
  width: 14px;
  height: 14px;
  flex: none;
  display: block;
  transition: transform .25s ease;
}
.btn-order.open .chevron { transform: rotate(180deg); }

.order-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.order-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.order-dropdown a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.2rem;
  color: var(--text);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
}
.order-dropdown a:last-child { border-bottom: none; }
.order-dropdown a:hover { background: var(--surface); }
.order-dropdown .platform-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.logo-uber { background: #000; }
.logo-door { background: #fff; }
.platform-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 7px; }
.order-dropdown .platform-name { font-weight: 600; }
.order-dropdown .platform-sub { font-size: .75rem; color: var(--muted); font-weight: 400; }
.logo-call { background: rgba(var(--orange-rgb),0.15); color: var(--orange); }
.logo-call svg { width: 16px; height: 16px; }

/* The "Order Now" label and the in-dropdown Call option are mobile-only;
   on desktop the button reads "Order Online" and calling has its own
   pill button in the bar. */
.order-label-short { display: none; }
/* Specificity must beat `.order-dropdown a { display: flex }`, otherwise
   the call row leaks onto tablet/desktop where the bar already shows the
   standalone phone button. */
.order-dropdown a.dropdown-call { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--surface); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .25s;
  transform-origin: center;
}
nav.open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Lock body scroll when mobile drawer open */
body.nav-open { overflow: hidden; }

/* ── HERO: Trattoria Storefront Poster ──
   A hand-painted Italian deli aesthetic that echoes Pinno's storefront
   signage — cream parchment, tricolor ribbon, real logo as centrepiece,
   sign-painter caps, rubber-stamp badge, gondola motif, marquee. */

:root {
  --it-green: #0b8a3e;
  --it-red:   #c8261c;
  --it-cream: #f6ecd2;
  --paper:    #f6ead0;
  --paper-2:  #ead8af;
  --ink:      #2a1c10;
}

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* `safe` keeps content pinned to the top edge (clear of the fixed nav)
     instead of spilling upward when it's nearly as tall as the viewport. */
  justify-content: safe center;
  /* Floor keeps the corner stamp (which overhangs the poster by 22px)
     below the navbar + ribbon on short viewports. */
  padding: clamp(6.5rem, 9vh, 7.5rem) 5% 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 50% 30%,
      rgba(255,250,235,0.7) 0%,
      rgba(255,250,235,0) 70%),
    repeating-linear-gradient(135deg,
      rgba(184,64,15,0.045) 0 1px,
      transparent 1px 22px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink);
}

/* Subtle vignette + bottom fade into the about section */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease-out, transform 6s ease-out;
  background:
    radial-gradient(circle at 18% 12%, rgba(11,138,62,0.07), transparent 35%),
    radial-gradient(circle at 86% 88%, rgba(200,38,28,0.08), transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(60,30,10,0.18), transparent 55%);
}
.hero-bg.loaded { opacity: 1; transform: scale(1); }

/* Tricolor ribbon — fluttering bunting that anchors the brand */
.hero-ribbon {
  position: absolute;
  top: 76px; left: 0; right: 0;
  height: 6px;
  display: flex;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(60,30,10,0.12);
}
.hero-ribbon span { flex: 1; }
.hero-ribbon span:nth-child(1) { background: var(--it-green); }
.hero-ribbon span:nth-child(2) { background: #f5f0e0; }
.hero-ribbon span:nth-child(3) { background: var(--it-red); }

/* Decorative gondola — echoes the green gondola on the storefront window */
.hero-gondola {
  position: absolute;
  left: -30px; bottom: 90px;
  width: 220px;
  color: var(--it-green);
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}
.hero-basil {
  position: absolute;
  right: -10px; top: 130px;
  width: 140px;
  color: var(--it-green);
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
  transform: rotate(18deg);
}
.hero-slice {
  position: absolute;
  right: 4%; bottom: 12%;
  width: 110px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-12deg);
}

/* The poster — the centrepiece "shop window" */
.hero-poster {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 880px;
  padding: clamp(1.75rem, 4.5vh, 3.75rem) 3.5rem clamp(1.5rem, 4vh, 3.25rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%,
      rgba(255,250,235,0.92) 0%,
      rgba(255,250,235,0.72) 65%,
      rgba(255,250,235,0.6) 100%);
  border: 1.5px solid rgba(200,38,28,0.22);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255,250,235,0.6),
    inset 0 0 80px rgba(184,64,15,0.06),
    0 24px 60px rgba(60,30,10,0.18),
    0 2px 0 rgba(255,255,255,0.4);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.3rem, 2.6vh, 1.8rem);
  letter-spacing: 0.02em;
  color: var(--it-green);
  margin-bottom: clamp(0.2rem, 1vh, 0.5rem);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--it-green);
  opacity: 0.55;
}

.hero-logo {
  display: block;
  margin: 0 auto clamp(0.4rem, 1.5vh, 1rem);
  width: clamp(180px, min(36vw, 27vh), 380px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(60,30,10,0.18));
}

.hero-sub-sign {
  font-family: 'Satisfy', cursive;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  letter-spacing: 0;
  color: var(--it-green);
  margin: clamp(.7rem, 2vh, 1.1rem) 0 clamp(1.1rem, 3vh, 1.75rem);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
/* Currently rendered empty — don't let its margins eat vertical space. */
.hero-sub-sign:empty { margin: 0; }
.hero-sub-sign-dot {
  width: 6px; height: 6px;
  background: var(--it-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,38,28,0.15);
  flex: none;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, min(3.6vw, 4vh), 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto clamp(0.4rem, 1.4vh, 1rem);
  max-width: 640px;
  color: var(--ink);
}
.hero-title .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 0.9;
  color: var(--it-red);
  display: inline-block;
  transform: rotate(-2deg);
  /* Caveat's tall ascenders overflow the 0.9 line-height box, and the
     rotation lifts the right end further out — on mobile the compositor
     intermittently clips that overhang while rasterizing (the trailing
     "d" flickers). Pad the box to enclose the ink, cancel with margin. */
  padding: .2em .12em;
  margin: -.2em .03em;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: rgba(42,28,16,0.72);
  max-width: 520px;
  margin: 0 auto clamp(0.75rem, 3vh, 2rem);
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(0.9rem, 3vh, 2.25rem);
}
.hero-actions .btn-primary {
  background: var(--it-red);
  box-shadow: 0 4px 18px rgba(200,38,28,0.35);
  padding: .9rem 2.1rem;
}
.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: #b21f17;
  box-shadow: 0 8px 24px rgba(200,38,28,0.45);
}

/* Rubber-stamp "Est. 2005" — slightly rotated, faded ink feel */
.hero-stamp {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 2px solid var(--it-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Keep text clear of the rings/edge so it never escapes the circle. */
  padding: 0 .55rem;
  transform: rotate(-13deg);
  color: var(--it-red);
  text-align: center;
  background: radial-gradient(circle at 32% 26%, #fdf7e8 0%, #f4e8cd 70%, #eddcb8 100%);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .14em;
  line-height: 1;
  box-shadow:
    inset 0 0 0 4px rgba(246,236,210,0.9),
    inset 0 0 0 5px var(--it-red),
    inset 0 2px 6px rgba(255,255,255,0.6),
    0 10px 22px rgba(60,30,10,0.22);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.hero-poster:hover .hero-stamp { transform: rotate(-6deg) scale(1.05); }
.hero-stamp-top {
  font-size: .82rem;
  letter-spacing: .26em;
  text-indent: .26em;
}
.hero-stamp-year {
  font-size: 2.3rem;
  margin: .14rem 0 .1rem;
  letter-spacing: .05em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.hero-stamp-bottom {
  font-size: .64rem;
  letter-spacing: .2em;
  padding-top: .32rem;
  text-indent: .2em;
  border-top: 1px solid rgba(200,38,28,0.38);
}

/* Menu-board meta strip */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding-top: clamp(0.75rem, 2vh, 1.5rem);
  border-top: 1px dashed rgba(200,38,28,0.32);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center;
  padding: 0 1.6rem;
  position: relative;
}
.hero-meta-item + .hero-meta-item::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(200,38,28,0.22);
}
.hero-meta-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .82rem;
  letter-spacing: .22em;
  color: var(--it-green);
}
.hero-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.hero-meta-value .amber { color: #d39414; }
.hero-meta-value a { color: inherit; text-decoration: none; transition: color .2s; }
.hero-meta-value a:hover { color: var(--it-red); }

/* Bottom marquee — vintage diner sign of menu items */
.hero-marquee {
  position: relative;
  width: 100vw;
  margin: clamp(1rem, 4vh, 3.5rem) -5% 0;
  padding: .95rem 0;
  background: var(--it-red);
  color: #f5ebcf;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 8px 20px rgba(60,30,10,0.18);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .2em;
}
.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee::before { left: 0;  background: linear-gradient(to right, var(--it-red), transparent); }
.hero-marquee::after  { right: 0; background: linear-gradient(to left,  var(--it-red), transparent); }
.hero-marquee-track {
  display: inline-flex;
  gap: 2.25rem;
  white-space: nowrap;
  animation: hero-marquee 42s linear infinite;
  padding-right: 2.25rem;
  will-change: transform;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: .9rem; }
.hero-marquee-track .dot {
  width: 6px; height: 6px;
  background: #f5ebcf;
  border-radius: 50%;
  opacity: 0.8;
  flex: none;
}
@keyframes hero-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  #hero { padding: 6.5rem 5% 0; }
  .hero-poster { padding: 3rem 1.75rem 2.5rem; max-width: 560px; }
  .hero-stamp {
    width: 92px; height: 92px;
    top: -14px; right: -10px;
  }
  .hero-stamp { padding: 0 .4rem; }
  .hero-stamp-top { font-size: .68rem; letter-spacing: .16em; text-indent: 0; }
  .hero-stamp-year { font-size: 1.65rem; }
  .hero-stamp-bottom { font-size: .5rem; letter-spacing: .07em; text-indent: 0; padding-top: .26rem; }
  .hero-gondola { width: 150px; left: -40px; bottom: 70px; }
  .hero-basil { width: 90px; right: -20px; top: 100px; }
  .hero-slice { display: none; }
  .hero-ribbon { top: 68px; }
  .hero-title { font-size: clamp(1.55rem, 5vw, 2rem); }
  .hero-sub-sign { font-size: 1.9rem; letter-spacing: 0; gap: .65rem; }
  .hero-eyebrow { font-size: 1.4rem; letter-spacing: 0.02em; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
  .hero-meta { gap: .25rem 0; padding-top: 1.25rem; }
  .hero-meta-item { padding: .5rem 1rem; min-width: 45%; }
  .hero-meta-item + .hero-meta-item::before { display: none; }
  .hero-marquee { margin-top: 2.5rem; font-size: .95rem; }
}

@media (max-width: 540px) {
  #hero { padding: 6rem 5% 0; min-height: auto; }
  .hero-poster { padding: 2.5rem 1.25rem 2rem; }
  .hero-logo { width: 75%; }
  .hero-title { font-size: clamp(1.35rem, 5.4vw, 1.7rem); }
  .hero-sub-sign { font-size: clamp(1.55rem, 6vw, 1.85rem); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; padding: .9rem 1.5rem; }
  .hero-meta-item { min-width: 100%; padding: .4rem 0; }
  .hero-stamp {
    width: 76px; height: 76px;
    top: -12px; right: -6px;
    padding: 0 .3rem;
  }
  .hero-stamp-top { font-size: .6rem; letter-spacing: .12em; }
  .hero-stamp-year { font-size: 1.35rem; }
  .hero-stamp-bottom { font-size: .48rem; letter-spacing: .04em; }
  .hero-gondola { width: 110px; bottom: 50px; opacity: 0.18; }
  .hero-basil { display: none; }
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(var(--orange-rgb),0.4);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-hover, var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--orange-rgb),0.5);
}
.btn-primary:active {
  box-shadow: 0 4px 20px rgba(var(--orange-rgb),0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid var(--it-green);
  transition: background .2s, transform .15s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-secondary:hover {
  background: var(--it-green);
  color: #f5ebcf;
  transform: translateY(-2px);
}
    
/* ── SECTIONS SHARED ── */
section { padding: 6rem 5%; }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-body {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
}

/* ── ABOUT: Photo-led magazine spread — storefront polaroid + story ── */
#about {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(184,64,15,0.035) 0 1px,
      transparent 1px 22px),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  color: var(--ink);
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background-image: linear-gradient(to right,
    var(--it-red) 0, var(--it-red) 8px,
    transparent 8px, transparent 18px);
  background-size: 18px 1px;
  opacity: 0.45;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

/* Polaroid of the storefront — tilted, taped, stamped */
.about-photo-wrap {
  position: relative;
  padding: 1.5rem 0 0;  /* room for tape strips above */
}
.about-photo-card {
  position: relative;
  background: #f9f1dc;
  padding: 14px 14px 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 22px 48px rgba(60,30,10,0.26),
    0 6px 14px rgba(60,30,10,0.12);
  transform: rotate(-2.4deg);
  border-radius: 2px;
  transition: transform .3s ease;
}
.about-photo-card:hover { transform: rotate(-1deg); }
.about-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.about-photo-caption {
  padding-top: .85rem;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ink);
  transform: rotate(-1deg);
  letter-spacing: .01em;
  line-height: 1.05;
}
.about-photo-caption small {
  display: block;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(42,28,16,0.6);
  margin-top: .15rem;
}

/* Masking-tape strips at the top corners — sit inside the photo card so
   they rotate together with it (and so they stick to the photo, not float). */
.about-photo-tape {
  position: absolute;
  width: 92px; height: 22px;
  background: rgba(245,210,90,0.55);
  border-top: 1px dashed rgba(180,130,30,0.35);
  border-bottom: 1px dashed rgba(180,130,30,0.35);
  z-index: 4;
  top: -10px;
  box-shadow: 0 2px 6px rgba(60,30,10,0.08);
}
.about-photo-tape.left  { left: 6%;  transform: rotate(-8deg); transform-origin: 50% 50%; }
.about-photo-tape.right { right: 6%; transform: rotate(7deg);  transform-origin: 50% 50%; }

/* "Est. 2005" rubber stamp overlaid on the photo */
.about-photo-stamp {
  position: absolute;
  top: 38px; right: 38px;
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 3px double var(--it-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--it-red);
  background: rgba(246,236,210,0.82);
  transform: rotate(-14deg);
  z-index: 5;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .12em;
  line-height: 1;
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(60,30,10,0.18);
}
.about-photo-stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--it-red);
  border-radius: 50%;
  opacity: 0.5;
}
.about-photo-stamp-top  { font-size: .7rem; }
.about-photo-stamp-year { font-size: 1.7rem; margin: .1rem 0; letter-spacing: .04em; }
.about-photo-stamp-bot  { font-size: .56rem; letter-spacing: .2em; }

/* Story column on the right */
.about-story { position: relative; }

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .26em;
  color: var(--it-green);
  margin-bottom: 1.1rem;
}
.about-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--it-green);
  opacity: 0.55;
}

/* Flipped heading hierarchy: Caveat lead, Playfair sub */
.about-heading {
  margin: 0 0 1.75rem;
  line-height: 1;
}
.about-heading .script {
  display: block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--it-red);
  transform: rotate(-1.5deg);
  margin-left: -.1em;
}
.about-heading .serif {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: rgba(42,28,16,0.7);
  margin-top: .35rem;
  letter-spacing: .01em;
}

.about-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(42,28,16,0.82);
  margin: 0 0 1.05rem;
  font-weight: 400;
  max-width: 520px;
}
.about-body p:last-child { margin-bottom: 0; }

/* Hand-signed note pinned beside the story */
.about-note {
  position: relative;
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem 1rem;
  background: rgba(246,236,210,0.85);
  border-left: 3px solid var(--it-red);
  transform: rotate(1deg);
  max-width: 460px;
  box-shadow: 0 8px 18px rgba(60,30,10,0.1);
}
.about-note p {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.about-note-sig {
  display: inline-block;
  margin-top: .5rem;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--it-red);
  transform: rotate(-1.5deg);
}

/* ── SLOGAN POSTER ── */
/* Taped-up keepsake card; instances set their own width/rotation. */
.slogan-card {
  position: relative;
  background: #f9f1dc;
  padding: 9px 9px 11px;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 16px 36px rgba(60,30,10,0.22),
    0 5px 12px rgba(60,30,10,0.1);
  transition: transform .3s ease;
}
.slogan-card::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  width: 86px;
  height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(245,210,90,0.55);
  border-top: 1px dashed rgba(180,130,30,0.35);
  border-bottom: 1px dashed rgba(180,130,30,0.35);
  z-index: 4;
}
.slogan-card img { width: 100%; height: auto; display: block; }

/* ── MENU ── */
#menu {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(184,64,15,0.03) 0 1px,
      transparent 1px 22px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding-bottom: 0;
  color: var(--ink);
}
#menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background-image: linear-gradient(to right,
    var(--it-red) 0, var(--it-red) 8px,
    transparent 8px, transparent 18px);
  background-size: 18px 1px;
  opacity: 0.45;
}

.menu-header { margin-bottom: 2.5rem; }

.menu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .26em;
  color: var(--it-green);
  margin-bottom: 1.1rem;
}
.menu-eyebrow::before,
.menu-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--it-green);
  opacity: 0.55;
}

.menu-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.menu-heading .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 0.95;
  color: var(--it-red);
  display: inline-block;
  transform: rotate(-1.5deg);
  margin: 0 .1em;
}

.menu-tabs-wrap {
  position: sticky;
  top: 68px;
  z-index: 50;
  background:
    repeating-linear-gradient(135deg,
      rgba(184,64,15,0.025) 0 1px,
      transparent 1px 22px),
    var(--paper);
  border-bottom: 1.5px dashed rgba(200,38,28,0.32);
  margin: 0 -5%;
  padding: 0 5%;
}
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--paper));
  pointer-events: none;
}
.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: .9rem 1.35rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .14em;
  font-weight: 400;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(42,28,16,0.5);
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-tab.active { color: var(--it-red); border-bottom-color: var(--it-red); }
.menu-tab:hover:not(.active) { color: var(--ink); }

.menu-panels { padding: 3rem 0 6rem; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* Category sub-heading — sign-painter style */
.menu-sub-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--it-green);
  padding: 2rem 0 .85rem;
  grid-column: 1 / -1;
  border-bottom: 1px dashed rgba(200,38,28,0.28);
  margin-bottom: .25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.menu-sub-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,38,28,0.18);
}
.menu-sub-heading:first-child { padding-top: 0; }

.menu-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .4rem .5rem;
  max-width: 760px;
  margin: 0 auto 1.6rem;
  padding: 0;
}
.menu-note span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  line-height: 1.2;
  color: rgba(42,28,16,0.78);
  background: rgba(255,250,235,0.65);
  border: 1px solid rgba(200,38,28,0.28);
  border-radius: 999px;
  padding: .32rem .7rem;
}
.menu-note span::before {
  content: '';
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--it-green);
  flex: 0 0 auto;
}
.menu-note strong { color: var(--it-red); font-weight: 700; }
/* Explicit tel link so mobile browsers don't auto-detect the number and
   apply their default blue-underline styling; matches the strong look. */
.menu-note-tel {
  color: var(--it-red);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.menu-note-tel:hover { text-decoration: underline; }

/* Specials tab — pages of the printed specials flyer, framed like the
   menu cards. Two posters side by side on desktop, stacked on phones. */
.specials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto;
}
.specials-figure {
  margin: 0;
  flex: 1 1 320px;
  max-width: 480px;
}
.specials-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1000 / 1414;
  border-radius: 6px;
  border: 1.5px solid rgba(200,38,28,0.2);
  box-shadow: 0 12px 32px rgba(60,30,10,0.18);
}

/* Menu item card — paper card with red border + corner dots */
.menu-card {
  background: rgba(255,250,235,0.72);
  border: 1.5px solid rgba(200,38,28,0.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,38,28,0.55);
  box-shadow: 0 12px 32px rgba(60,30,10,0.15);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(246,236,210,0.8);
}
.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-media img { transform: scale(1.06); }

/* These source photos are portrait shots cropped into a 4:3 card — nudge the
   focal point down so the pizza itself fills the frame instead of the blurred
   oven/background or box flap at the top of the original photo. */
.menu-card-media img[src*="Aussie.jpg"] { object-position: center 80%; }
.menu-card-media img[src*="Americana.jpg"] { object-position: center 70%; }
.menu-card-media img[src*="Pork%20Belly%20Pizza.jpg"] { object-position: center 60%; }
.menu-card-media img[src*="Oven%20Baked%20Chips.jpg"] { object-position: center 62%; }

.menu-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,20,10,0.28) 0%, transparent 40%);
  pointer-events: none;
}

/* Placeholder — Italian parchment + crosshatch */
.menu-card-media.no-photo {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,38,28,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(11,138,62,0.1) 0%, transparent 55%),
    linear-gradient(135deg, rgba(246,236,210,0.9) 0%, rgba(234,216,175,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card-media.no-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(200,38,28,0.05) 0, rgba(200,38,28,0.05) 1px,
      transparent 1px, transparent 14px);
}
.menu-card-media.no-photo svg {
  width: 52px; height: 52px;
  color: var(--it-red);
  opacity: 0.28;
  position: relative;
  z-index: 1;
}

/* Price badge — red pill, cream text */
.menu-card-price {
  position: absolute;
  top: .75rem; right: .75rem;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: #f5ebcf;
  background: var(--it-red);
  border-radius: 6px;
  padding: .18rem .65rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(60,10,10,0.3);
}

.menu-card-body {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
  background: rgba(255,250,235,0.55);
}
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.menu-card-num {
  flex: 0 0 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .05em;
  line-height: 1;
  color: var(--it-red);
}
.menu-card-num-label {
  color: rgba(42,28,16,0.45);
  letter-spacing: .16em;
  font-size: .82rem;
  margin-right: .28rem;
}
.menu-card-desc {
  font-size: .82rem;
  color: rgba(42,28,16,0.7);
  line-height: 1.55;
  flex: 1;
}
.menu-card-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}

/* Tags — Italian-tricolour palette only */
.tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  padding: .15rem .55rem;
  border-radius: 4px;
  font-weight: 400;
}
.tag-vegan   { background: rgba(11,138,62,0.12);  color: var(--it-green); border: 1px solid rgba(11,138,62,0.3); }
.tag-veg     { background: rgba(11,138,62,0.12);  color: var(--it-green); border: 1px solid rgba(11,138,62,0.3); }
.tag-popular { background: rgba(200,38,28,0.12);  color: var(--it-red);   border: 1px solid rgba(200,38,28,0.3); }
.tag-gourmet { background: rgba(180,130,20,0.12); color: #9a6e10;         border: 1px solid rgba(180,130,20,0.3); }
.tag-spicy   { background: rgba(200,38,28,0.18);  color: #a01810;         border: 1px solid rgba(200,38,28,0.4); }
.tag-gf      { background: rgba(11,138,62,0.1);   color: #0a7535;         border: 1px solid rgba(11,138,62,0.25); }

/* ── HALF 'N' HALF ── */
.half-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 2rem 0 4rem;
}
.half-info { max-width: 480px; }
.half-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: .65rem 0 1rem;
}
.half-title em { font-style: italic; color: var(--it-red); font-weight: 400; }
.half-body {
  color: rgba(42,28,16,0.75);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* "How it works" steps */
.half-steps {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.half-step {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.4;
}
.half-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,38,28,0.12);
  border: 1px solid rgba(200,38,28,0.35);
  color: var(--it-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

/* Size pricing rows */
.half-sizes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.half-size {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  transition: border-color .2s, transform .15s, background .2s;
}
.half-size:hover {
  border-color: rgba(200,38,28,0.45);
  transform: translateY(-2px);
}
.half-size-meta { display: flex; flex-direction: column; gap: .1rem; }
.half-size-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 700;
}
.half-size-name {
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
}
.half-size-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--it-red);
  line-height: 1;
}

/* Visual side */
.half-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.half-pizza {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 20px 50px rgba(60,40,20,0.22),
    0 0 0 6px rgba(60,40,20,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.3);
}
.half-pizza-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
}
.half-pizza-left {
  left: 0;
  background-image: url('images/food/margherita_pizza.jpg'), url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAA4KCw0LCQ4NDA0QDw4RFiQXFhQUFiwgIRokNC43NjMuMjI6QVNGOj1OPjIySGJJTlZYXV5dOEVmbWVabFNbXVn/2wBDAQ8QEBYTFioXFypZOzI7WVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVn/wAARCAAYABgDASIAAhEBAxEB/8QAGAABAAMBAAAAAAAAAAAAAAAAAAMEBQH/xAAkEAACAQMFAAEFAAAAAAAAAAABAgMABBESEyFBUQUycYGx4f/EABgBAQADAQAAAAAAAAAAAAAAAAEAAgME/8QAGxEBAQACAwEAAAAAAAAAAAAAAQACMRESQSH/2gAMAwEAAhEDEQA/ANWyhtprdkECRSuAWHP7NRHRDHIZs5wdqMAnJH97qL46R2upTc6iwXBcsDoPnlRus0V7OqzHS4VFZ2x1ziub3duq1IyPMohnwSuWkkHXgIFK7DEsKSFw0Z1kFy31fmlPZ8k1Xp70QlbeG321ZeUJwzH7+Vn396sdtZjdzPyxKHOk54FKVMQeIy+arFtqln3sq8D4JSQ90pSqyhf/2Q==');
}
.half-pizza-right {
  right: 0;
  background-image: url('images/food/meat_lovers_pizza.jpg'), url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAA4KCw0LCQ4NDA0QDw4RFiQXFhQUFiwgIRokNC43NjMuMjI6QVNGOj1OPjIySGJJTlZYXV5dOEVmbWVabFNbXVn/2wBDAQ8QEBYTFioXFypZOzI7WVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVlZWVn/wAARCAAYABgDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAAAAUDBP/EACUQAAIBAwIFBQAAAAAAAAAAAAECAwAEERIhEzFRccEiI0Fhof/EABgBAAIDAAAAAAAAAAAAAAAAAAACAQME/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECERIhMUH/2gAMAwEAAhEDEQA/AOCQNJcEO5DMdWoHJYdO1UWtC0aogIfA3B/cVItniN5IWBTTzBXIJ67chVlJUiunbiASDTgEbYHSqKNjMYreA30cN6VwfknBY/YpWd/MovC4KllbAYjmfFKZSz8EcNdItndIyEL7cqjJU7hq0N7LpEkpdyTkENsO1KUNUxoO10GRljyzLIWHp175B80pSo9DTR//2Q==');
}
.half-pizza-divider {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,255,255,0.55) 25%,
    rgba(255,255,255,0.55) 75%,
    transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  pointer-events: none;
}
.half-pizza-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17,17,16,0.82);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.half-pizza-label-left { left: 8%; }
.half-pizza-label-right { right: 8%; }

/* Floating "vs" badge in the centre */
.half-pizza-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--it-red);
  color: #f5ebcf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow:
    0 8px 24px rgba(var(--orange-rgb), 0.5),
    0 0 0 4px var(--bg);
  z-index: 2;
}

@media (max-width: 900px) {
  .half-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 0 3rem;
  }
  .half-visual { order: -1; }
  .half-pizza { width: min(320px, 78vw); }
  .half-info { max-width: 100%; }
}
@media (max-width: 480px) {
  .half-pizza-label { font-size: .6rem; padding: .3rem .65rem; }
  .half-pizza-badge { width: 48px; height: 48px; font-size: 1rem; }
}

/* ── REVIEWS ── */
#reviews {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: left;
  padding: 4rem 5%;
}
/* Editorial layout: taped slogan poster on the left, the praise filling
   the rest of the width on the right (heading + rating, then the reviews
   spread across as columns). */
.reviews-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-poster { display: flex; justify-content: center; }
.slogan-card.reviews-slogan-card {
  width: 100%;
  max-width: 300px;
  margin: 0;
  transform: rotate(-3deg);
}
.slogan-card.reviews-slogan-card:hover { transform: rotate(-1.2deg); }
.reviews-main { min-width: 0; }
.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.reviews-eyebrow::before,
.reviews-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.reviews-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 auto;
}
.reviews-heading em { font-style: italic; font-weight: 400; color: var(--orange); }

/* Compact rating line */
.rating-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin: 1.25rem auto 2.5rem;
  font-size: .9rem;
}
.rating-line-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.rating-line-stars {
  color: var(--amber);
  font-size: .95rem;
  letter-spacing: .08em;
}
.rating-line-stars .half {
  position: relative;
  color: var(--border);
  display: inline-block;
}
.rating-line-stars .half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  overflow: hidden;
  color: var(--amber);
}
.rating-line-meta {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .88rem;
  color: var(--muted);
}
.rating-line-meta a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  margin-left: .25rem;
}
.rating-line-meta a:hover { color: var(--orange-hover); }

/* Reviews spread across the right side as columns, filling the width. */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.review-card + .review-card {
  border-left: 1px solid var(--border);
  border-top: none;
}
.review-card {
  padding: 0 1.4rem;
  display: flex;
  flex-direction: column;
  transition: opacity .35s ease;
}
.review-card:first-child { padding-left: 0; }
.review-card.fading { opacity: 0; }
.review-stars {
  color: var(--amber);
  font-size: .78rem;
  letter-spacing: .15em;
  margin-bottom: .65rem;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem;
}
.review-author {
  margin-top: auto;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
}
.review-date {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* ── FIND US ── */
#contact { background: var(--bg); }

.findus-wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
}
.findus-left { display: flex; flex-direction: column; gap: 1.5rem; }
.findus-right { display: flex; flex-direction: column; gap: 1.5rem; }

/* Status card */
.status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.status-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: #22c55e;
}
.status-card.closed::before { background: #ef4444; }
.status-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.15);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.status-card.closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 6px rgba(239,68,68,0.15);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(34,197,94,0.15); }
  50% { box-shadow: 0 0 0 10px rgba(34,197,94,0.05); }
}
.status-info { flex: 1; }
.status-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
.status-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-top: .2rem;
}
.status-sub { font-size: .85rem; color: var(--muted); margin-top: .15rem; }

/* Contact tiles */
.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .2s, transform .2s;
}
.contact-tile:hover { border-color: var(--orange); transform: translateY(-2px); }
.contact-tile-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(var(--orange-rgb),0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-tile-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
.contact-tile-value {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.contact-tile-cta {
  font-size: .8rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

/* Service chips */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
}
.service-chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Hours card v2 */
.hours-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hours-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hours-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.hours-header-sub {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.hours-list { padding: .5rem 0; }
.hours-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: .7rem 1.5rem;
  font-size: .875rem;
  border-left: 3px solid transparent;
  transition: background .2s;
}
.hours-row.today {
  background: rgba(var(--orange-rgb),0.08);
  border-left-color: var(--orange);
}
.hours-row .day { font-weight: 600; color: var(--text); }
.hours-row.today .day { color: var(--orange); }
.hours-row .day-short { display: none; }
.hours-slots {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: flex-end;
}
.hours-slot {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .6rem;
  background: var(--surface);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
}
.hours-row.today .hours-slot { background: rgba(var(--orange-rgb),0.15); color: var(--amber); }
.hours-slot-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.hours-footnote {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--muted);
  background: var(--surface);
}

/* Map */
.map-embed {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  margin-top: 1.5rem;
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: var(--map-filter); }
.map-directions-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: transform .2s;
}
.map-directions-btn svg { width: 16px; height: 16px; flex: none; }
.map-directions-btn:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}


.footer-brand .nav-logo { display: inline-flex; margin-bottom: .75rem; }
.footer-brand .nav-logo img { height: 52px; }
.footer-brand p { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-socials {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; display: block; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: var(--text); text-decoration: none; font-size: .9rem; opacity: .7; transition: opacity .2s; }
.footer-col ul a:hover { opacity: 1; }

.footer-bottom {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #about { padding-top: 5rem; padding-bottom: 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; max-width: 560px; }
  .about-photo-card { transform: rotate(-1.5deg); padding: 12px 12px 56px; }
  .about-photo-caption { bottom: 12px; font-size: 1.4rem; }
  .about-photo-caption small { font-size: .9rem; }
  .about-photo-stamp { width: 72px; height: 72px; top: 28px; right: 28px; }
  .about-photo-stamp-top { font-size: .6rem; }
  .about-photo-stamp-year { font-size: 1.4rem; }
  .about-photo-stamp-bot { font-size: .5rem; }
  .about-photo-tape { width: 72px; height: 18px; }
  .about-heading .script { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .about-heading .serif { font-size: 1.1rem; }
  .findus-wrap { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
    text-align: center;
  }
  .reviews-main { text-align: center; }
  .slogan-card.reviews-slogan-card { max-width: 210px; }
  /* Reviews stack back into a single column on narrow screens. */
  .reviews-grid { grid-template-columns: 1fr; padding-top: 1.25rem; }
  .review-card { padding: 1.25rem 0; }
  .review-card:first-child { padding-top: 0; }
  .review-card + .review-card { border-left: none; border-top: 1px solid var(--border); }
}

/* Tablet: hide centre links, keep Order Online + phone */
@media (max-width: 960px) {
  nav { gap: 1rem; padding: 0 4%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-call { padding: .55rem 1rem; font-size: .82rem; }
}

/* Phone: collapse the call button to an icon-only tap target so it
   shrink logo, and fold calling into the "Order Now" dropdown so the
   bar stays uncluttered */
@media (max-width: 640px) {
  section { padding: 4rem 5%; }
  nav { height: 60px; gap: .5rem; padding: 0 4%; }
  .nav-logo img { height: 36px; }
  .btn-call { display: none; }
  .order-label-full { display: none; }
  .order-label-short { display: inline; }
  .order-dropdown a.dropdown-call { display: flex; }
  .btn-order { padding: .55rem 1rem; font-size: .82rem; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .menu-grid { gap: 1rem; }
  .half-divider { flex-direction: column; }

  /* Menu tabs wrap into pill chips so all options stay visible */
  .menu-tabs-wrap { border-bottom: none; padding: .5rem 5%; }
  .menu-tabs-wrap::after { display: none; }
  .menu-tabs {
    flex-wrap: wrap;
    gap: .4rem;
    overflow-x: visible;
    justify-content: flex-start;
    padding: .5rem 0;
  }
  .menu-tab {
    padding: .45rem .9rem;
    font-size: .9rem;
    border: 1.5px solid rgba(200,38,28,0.25);
    border-radius: 4px;
    border-bottom: 1.5px solid rgba(200,38,28,0.25);
    background: rgba(255,250,235,0.7);
    color: rgba(42,28,16,0.55);
    line-height: 1.2;
  }
  .menu-tab.active {
    background: var(--it-red);
    border-color: var(--it-red);
    color: #f5ebcf;
  }
}

@media (max-width: 420px) {
  .btn-order { padding: .5rem .85rem; font-size: .78rem; }
}

/* ── MOBILE NAV DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 6% 3rem;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
  z-index: 99;
}
@media (max-width: 640px) { .nav-drawer { top: 60px; } }
nav.open + .nav-drawer { display: flex; }
.nav-drawer a.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding .2s;
}
.nav-drawer a.drawer-link:hover { color: var(--orange); padding-left: .5rem; }
.nav-drawer a.drawer-link::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform .2s, color .2s;
}
.nav-drawer a.drawer-link:hover::after { color: var(--orange); transform: translateX(4px); }
.nav-drawer-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-drawer-call {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.nav-drawer-call .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(var(--orange-rgb),0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav-drawer-call .label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.nav-drawer-call .number { font-size: 1.05rem; font-weight: 700; margin-top: .15rem; }
.nav-drawer-hours {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.nav-drawer-hours strong { color: var(--text); display: block; margin-bottom: .25rem; font-weight: 600; }

/* ── FADE-IN ANIMATION ──
   anime.js drives the reveals when available; this CSS transition is the
   fallback path (CDN blocked / script failure). */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Reduced motion: show everything immediately, skip the theatrics */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── BLUR-UP IMAGE LOADING ──
   Each photo carries a tiny blurred JPEG as an inline background that
   shows through while the real pixels are missing (works with no JS).
   The script adds a blur→sharp transition on top: the placeholder and
   the freshly painted photo cross over at the same blur level, then the
   image sharpens. clip-path contains the blur halo; the transform in the
   transition list keeps the menu-card hover zoom smooth meanwhile. */
img.lqip {
  background-size: cover;
  background-position: center;
}
img.lqip-wait {
  filter: blur(12px);
  clip-path: inset(0);
  /* Shift the image's own pixels out of the content box while loading:
     browsers paint partially-downloaded images progressively, which
     would show sharp rows over the placeholder. The blurry background
     placeholder is unaffected; pixels snap back on the load event. */
  object-position: -200vw 0;
}
img.lqip-loaded {
  filter: blur(0);
  clip-path: inset(0);
  transition: filter .5s ease, transform .5s ease;
}
