/* ===== Pizza Bono homepage — Trattoria warmth + Forno energy, tight & menu-forward ===== */

/* tighter sections than the global default */
.section-tight { padding: clamp(44px, 6vw, 76px) 0; }

/* inline star icon (replaces ★ glyphs) */
.star-i { width: .92em; height: .92em; display: inline-block; vertical-align: -.12em; fill: var(--gold); }
.stars { gap: 3px; }
.stars svg { width: 17px; height: 17px; fill: currentColor; }

/* show phone in header on desktop */
.header-phone { display: none; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); margin-left: 4px; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--green); }
@media (min-width: 1040px) { .header-phone { display: inline-flex; } }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 52px) 0 clamp(34px, 4vw, 56px); }
.hero::before { content: ""; position: absolute; top: -25%; right: -8%; width: 55%; height: 150%; background: radial-gradient(circle, rgba(184,134,47,.16), transparent 62%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(26px, 4vw, 58px); align-items: center; position: relative; }
.open-now { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; color: var(--green-deep); background: var(--green-tint); padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 14px; white-space: nowrap; }
.open-now .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(44,106,64,.25); }
.open-now.closed { color: #8a3a30; background: rgba(176,58,46,.1); }
.open-now.closed .dot { background: #b03a2e; box-shadow: 0 0 0 3px rgba(176,58,46,.22); }
.hero h1 { font-size: clamp(3rem, 6.4vw, 5.3rem); letter-spacing: -.015em; }
.hero h1 .script { display: block; font-size: clamp(2.7rem, 5.2vw, 4.2rem); color: var(--green); margin: .04em 0 0; white-space: nowrap; }
.hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; margin: 18px 0 26px; }
.hero .cta-row .btn { box-shadow: var(--shadow-sm); }
.hero-visual { position: relative; }
.hero-visual .main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: #fff; }
.hero-visual .main img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; top: -16px; right: 12px; width: 130px; height: 130px; transform: rotate(-8deg); filter: drop-shadow(0 3px 10px rgba(0,0,0,.3)); }
.hero-badge { position: absolute; bottom: -18px; left: -18px; background: var(--card); border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 13px; border: 1px solid rgba(36,31,27,.08); }
.hero-badge .big { font-family: var(--serif); font-size: 2rem; color: var(--red); line-height: 1; }
.hero-badge small { font-size: .78rem; color: var(--ink-soft); display: block; max-width: 12ch; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { order: -1; max-width: 380px; margin: 0 auto; } }

/* ---------- Deal ribbon (Forno energy) ---------- */
.ribbon { background: var(--ink); color: var(--paper); }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.rdeal { display: flex; gap: 14px; align-items: center; padding: 20px clamp(16px, 2.4vw, 30px); border-right: 1px solid rgba(255,255,255,.12); }
.rdeal:last-child { border-right: 0; }
.rdeal .ri { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--gold); }
.rdeal .ri svg { width: 22px; height: 22px; }
.rdeal .ri img { width: 34px; height: 34px; }
.rdeal b { display: block; font-size: .98rem; color: #fff; line-height: 1.2; }
.rdeal small { color: rgba(255,255,255,.6); font-size: .82rem; }
@media (max-width: 760px) { .ribbon-grid { grid-template-columns: 1fr 1fr; } .rdeal:nth-child(2n) { border-right: 0; } .rdeal { border-bottom: 1px solid rgba(255,255,255,.12); } }

/* ---------- Section heads ---------- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.shead .st h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-top: 8px; }
.shead .st h2 .script { color: var(--green); }
.shead.center { justify-content: center; text-align: center; }
.shead.center .st { max-width: 640px; }
.shead.center p { color: var(--ink-soft); margin-top: 12px; }

/* ---------- Menu-forward: signature + favourites ---------- */
.fav-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
.fav { position: relative; background: var(--card); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(36,31,27,.08); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.fav:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fav .pic { aspect-ratio: 16/11; overflow: hidden; background: var(--paper-2); }
.fav.signature .pic { aspect-ratio: auto; flex: 1; min-height: 220px; }
.fav .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fav:hover .pic img { transform: scale(1.05); }
.fav .b { padding: 18px 20px 20px; }
.fav .b .row1 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.fav h3 { font-size: 1.35rem; min-width: 0; }
.fav .price { font-family: var(--serif); color: var(--red); font-size: 1.2rem; white-space: nowrap; flex: none; }
.fav .price em { font-style: normal; font-size: .62em; color: var(--ink-faint); }
.fav p { color: var(--ink-soft); font-size: .9rem; margin: 5px 0 0; }
.fav .flag { position: absolute; top: 14px; left: 14px; z-index: 1; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill); background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.fav .flag.veg { background: var(--green); }
.fav.signature { grid-row: span 2; }
.fav.signature h3 { font-size: 1.7rem; }
.fav.signature .price { font-size: 1.5rem; }
@media (max-width: 900px) { .fav-grid { grid-template-columns: 1fr 1fr; } .fav.signature { grid-column: span 2; grid-row: auto; flex-direction: row; } .fav.signature .pic { min-height: 0; aspect-ratio: 1; width: 45%; } .fav.signature .b { flex: 1; align-self: center; } }
@media (max-width: 560px) { .fav-grid { grid-template-columns: 1fr; } .fav.signature { grid-column: auto; flex-direction: column; } .fav.signature .pic { width: 100%; aspect-ratio: 16/11; } }

/* compact list of more pizzas (dollarless prices) */
.mlist { margin-top: 20px; column-count: 2; column-gap: 48px; }
.mitem { break-inside: avoid; display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px dashed rgba(36,31,27,.18); }
.mitem .mname { font-family: var(--serif); font-size: 1.18rem; white-space: nowrap; }
.mitem .mdesc { color: var(--ink-faint); font-size: .82rem; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mitem .leader { flex: 1; border-bottom: 1px dotted rgba(36,31,27,.25); transform: translateY(-4px); }
.mitem .mprice { font-weight: 800; color: var(--red); font-size: 1rem; }
@media (max-width: 680px) { .mlist { column-count: 1; } }

/* ---------- Story band ---------- */
.story { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(26px, 4vw, 60px); align-items: center; }
.story-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.story .stats { display: flex; gap: 32px; margin-top: 26px; flex-wrap: wrap; }
.story .stats .s b { font-family: var(--serif); font-size: 2.2rem; color: var(--red); display: block; line-height: 1; }
.story .stats .s span { font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 820px) { .story { grid-template-columns: 1fr; } }

/* ---------- Order band (red, bold) ---------- */
.oband { background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; border-radius: var(--r-lg); padding: clamp(30px, 4vw, 52px); position: relative; overflow: hidden; }
.oband::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 16%, rgba(255,255,255,.13), transparent 48%); }
.oband > * { position: relative; }
.oband-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.oband h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.oband p { color: rgba(255,255,255,.86); max-width: 42ch; margin-top: 10px; }
.ochan { display: grid; gap: 12px; }
.ochan a { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: var(--r); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 800; transition: background .2s ease, transform .15s ease; }
.ochan a:hover { background: rgba(255,255,255,.2); transform: translateX(4px); }
.ochan a .oi { width: 42px; height: 42px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.ochan a .oi svg { width: 24px; height: 24px; }
.ochan a.uber .oi { background: var(--uber); } .ochan a.dd .oi { background: var(--doordash); } .ochan a.call .oi { background: #fff; color: var(--red); }
.ochan a.uber .oi svg { width: 100%; height: 100%; padding: 4px; }
.ochan a small { display: block; font-weight: 500; color: rgba(255,255,255,.7); font-size: .8rem; }
.ochan a .ar { margin-left: auto; opacity: .55; }
@media (max-width: 820px) { .oband-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }

/* ---------- Find-us mini ---------- */
.find { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.find-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; border: 1px solid rgba(36,31,27,.1); }
.find-map iframe { width: 100%; height: 100%; border: 0; }
.find h2 { font-size: clamp(2rem, 4vw, 3rem); }
.find .info { display: grid; gap: 16px; margin-top: 22px; }
.find .info .row { display: flex; gap: 14px; align-items: flex-start; }
.find .info .row .ii { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--green-tint); color: var(--green-deep); }
.find .info .row .ii svg { width: 20px; height: 20px; }
.find .info .row b { display: block; font-size: 1.02rem; }
.find .info .row span { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 820px) { .find { grid-template-columns: 1fr; } }
