/* ==========================================================================
   Roma Pizza & Italian Restaurant — Styles
   Brand palette: Italian red, warm gold, cream. Fancy, warm, appetizing.
   ========================================================================== */

:root {
  --red: #c8102e;
  --red-deep: #8f0a1e;
  --red-dark: #5c0512;
  --gold: #f4b829;
  --gold-soft: #ffd77a;
  --cream: #fff7ea;
  --cream-2: #fdeecf;
  --ink: #241611;
  --ink-soft: #5a4a42;
  --green: #2e7d32;
  --wa: #25d366;
  --shadow-sm: 0 4px 14px rgba(60, 20, 10, 0.10);
  --shadow-md: 0 14px 40px rgba(80, 20, 10, 0.16);
  --shadow-lg: 0 30px 70px rgba(80, 15, 10, 0.28);
  --radius: 20px;
  --maxw: 1180px;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Pacifico", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--red-dark); box-shadow: 0 10px 24px rgba(244,184,41,.4); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline:hover { background: #fff; color: var(--red-deep); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(200,16,46,.35); }
.btn--red:hover { background: var(--red-deep); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1eb954; }
.btn--nav { background: var(--gold); color: var(--red-dark); padding: 10px 20px; }
.btn--nav:hover { background: var(--gold-soft); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.nav--solid { background: rgba(140,10,25,.97); box-shadow: 0 6px 24px rgba(0,0,0,.22); padding: 8px 0; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo { height: 46px; width: auto; filter: drop-shadow(0 3px 8px rgba(0,0,0,.4)); border-radius: 8px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link { color: #fff; font-weight: 500; font-size: 1rem; position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 22px 90px; color: #fff; overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(244,184,41,.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(160deg, #c8102e 0%, #97091f 55%, #5c0512 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity: .6;
}
.hero__content { position: relative; z-index: 2; max-width: 780px; animation: rise .9s ease both; }
.hero__logo { width: min(430px, 82vw); margin: 0 auto 6px; border-radius: 14px; box-shadow: var(--shadow-lg); }
.hero__script { font-family: var(--font-script); color: var(--gold-soft); font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 10px 0 4px; text-shadow: 0 3px 12px rgba(0,0,0,.4); }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.12; margin-bottom: 14px; text-shadow: 0 3px 18px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 28px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero__hours { font-weight: 500; color: var(--gold-soft); letter-spacing: .3px; }
.hero__scroll {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(0,0,0,.28); padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.hero__scroll span { display: inline-block; color: var(--gold-soft); font-weight: 600; letter-spacing: .5px; animation: marquee 18s linear infinite; }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 92px 22px; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: .78rem; color: var(--red); margin-bottom: 10px; }
.section__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ink); line-height: 1.15; }
.section__title::after { content: ""; display: block; width: 70px; height: 4px; border-radius: 4px; background: var(--gold); margin: 16px auto 0; }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; }

/* ---------- Deals ---------- */
.section--deals {
  max-width: none; margin: 0;
  background:
    linear-gradient(180deg, rgba(255,247,234,0) 0%, var(--cream-2) 100%),
    var(--cream);
}
.section--deals .section__head, .deals { max-width: var(--maxw); margin-inline: auto; }
.deals { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.deal {
  position: relative; background: #fff; border-radius: var(--radius); padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(200,16,46,.08);
  transition: transform .2s ease, box-shadow .2s ease; overflow: hidden;
}
.deal::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.deal:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.deal__badge { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); }
.deal__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin: 4px 0 10px; color: var(--ink); }
.deal__desc { color: var(--ink-soft); font-size: .96rem; min-height: 48px; }
.deal__price { margin-top: 16px; font-family: var(--font-display); font-weight: 900; font-size: 2.1rem; color: var(--red); }
.deal__price small { font-size: 1rem; vertical-align: super; font-weight: 700; }

/* ---------- Pizza pricing table ---------- */
.section--pizza { background: transparent; }
.pizza-table-wrap { max-width: 900px; margin: 0 auto; }
.pizza-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 26px; }
.pizza-card__head { background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; padding: 20px 26px; }
.pizza-card__head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.pizza-card__head p { font-size: .9rem; color: var(--gold-soft); margin-top: 2px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 12px 14px; text-align: center; font-size: .95rem; }
.price-table thead th { background: var(--cream-2); color: var(--red-deep); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .5px; }
.price-table th:first-child, .price-table td:first-child { text-align: left; font-weight: 600; }
.price-table tbody tr:nth-child(even) { background: #fdf6ea; }
.price-table td { color: var(--ink); font-weight: 600; }
.pizza-card__toppings { padding: 18px 26px; background: #fff; border-top: 1px dashed rgba(200,16,46,.2); }
.pizza-card__toppings strong { color: var(--red); }
.pizza-card__toppings p { color: var(--ink-soft); font-size: .92rem; }
.pizza-card__extra { padding: 6px 26px 20px; }
.pizza-card__extra li { list-style: none; color: var(--green); font-weight: 600; font-size: .9rem; }
.kitchen-note { text-align: center; font-family: var(--font-script); color: var(--red); font-size: 1.25rem; margin-top: 8px; }

/* ---------- Menu ---------- */
.section--menu { background: transparent; }
.menu-controls { position: sticky; top: 74px; z-index: 40; background: var(--cream); padding: 14px 0 10px; margin-bottom: 20px; }
.menu-search {
  width: 100%; max-width: 520px; display: block; margin: 0 auto 16px;
  padding: 14px 22px; border-radius: 999px; border: 2px solid rgba(200,16,46,.18);
  font-family: var(--font-body); font-size: 1rem; background: #fff; box-shadow: var(--shadow-sm);
  transition: border .2s ease;
}
.menu-search:focus { outline: none; border-color: var(--red); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.menu-tab {
  border: 2px solid rgba(200,16,46,.2); background: #fff; color: var(--red-deep);
  padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  cursor: pointer; transition: all .18s ease; font-family: var(--font-body);
}
.menu-tab:hover { border-color: var(--red); }
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 8px 18px rgba(200,16,46,.3); }

.menu-cat { margin-bottom: 56px; scroll-margin-top: 150px; }
.menu-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.menu-cat__icon { font-size: 2rem; }
.menu-cat__title { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.menu-cat__note { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; font-style: italic; border-left: 3px solid var(--gold); padding-left: 12px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.menu-item {
  background: #fff; border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,16,46,.06); transition: transform .16s ease, box-shadow .16s ease;
  display: flex; flex-direction: column;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-item__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item__name { font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.menu-item__price { font-family: var(--font-display); font-weight: 800; color: var(--red); white-space: nowrap; font-size: 1rem; }
.menu-item__desc { color: var(--ink-soft); font-size: .9rem; margin-top: 6px; }
.menu-empty { text-align: center; color: var(--ink-soft); padding: 40px; font-size: 1.1rem; }

/* ---------- Branches ---------- */
.section--branches { max-width: none; background: linear-gradient(180deg, var(--red-dark), var(--red-deep)); color: #fff; }
.section--branches .section__title { color: #fff; }
.section--branches .section__title::after { background: var(--gold); }
.section--branches .eyebrow { color: var(--gold-soft); }
.section--branches .section__lead { color: rgba(255,255,255,.85); }
.branches { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.branches__meta { max-width: 820px; margin: 34px auto 0; text-align: center; color: rgba(255,255,255,.88); font-size: .95rem; }
.branches__meta p { margin-top: 8px; }
.branch { background: #fff; color: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.branch__map { position: relative; height: 210px; background: #eee; }
.branch__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.branch__num { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-sm); font-size: 1.2rem; }
.branch__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.branch__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--red); }
.branch__city { font-weight: 600; color: var(--ink-soft); margin-bottom: 12px; }
.branch__addr { display: flex; gap: 8px; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.branch__note { color: var(--green); font-weight: 600; font-size: .88rem; margin: 6px 0 0 24px; }
.branch__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--red); font-size: 1.15rem; margin: 14px 0; }
.branch__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.branch__actions .btn { justify-content: center; padding: 11px 14px; font-size: .9rem; }
.branch__actions .btn--full { grid-column: 1 / -1; }
.btn--fb { background: #1877f2; color: #fff; }
.btn--fb:hover { background: #0f5fd0; }
.btn--map { background: #fff; color: var(--red); border-color: rgba(200,16,46,.3); }
.btn--map:hover { background: var(--cream); }

/* ---------- Contact ---------- */
.section--contact { padding-top: 92px; }
.contact__card { background: linear-gradient(135deg, #fff, var(--cream-2)); border-radius: 28px; padding: 54px 30px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid rgba(200,16,46,.1); }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 32px 0; }
.contact__item { background: #fff; border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); text-align: left; }
.contact__item h4 { font-family: var(--font-display); color: var(--red); font-size: 1.2rem; }
.contact__item .city { color: var(--ink-soft); font-size: .88rem; margin-bottom: 14px; }
.contact__btns { display: flex; flex-direction: column; gap: 8px; }
.contact__btns .btn { justify-content: center; }
.contact__meta { color: var(--ink-soft); font-size: .92rem; }
.contact__meta p { margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.85); padding: 56px 22px 30px; text-align: center; }
.footer__inner { max-width: 640px; margin: 0 auto; }
.footer__logo { width: 220px; margin: 0 auto 10px; border-radius: 10px; }
.footer__tag { font-family: var(--font-script); color: var(--gold-soft); font-size: 1.5rem; margin-bottom: 20px; }
.footer__social { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.footer__social a { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); padding: 9px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600; transition: background .2s ease; }
.footer__social a:hover { background: #1877f2; }
.footer__note { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 16px; line-height: 1.5; }
.footer__copy { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ---------- Floating action buttons ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .18s ease; }
.fab__btn:hover { transform: scale(1.08); }
.fab__wa { background: var(--wa); animation: pulse 2.4s infinite; }
.fab__call { background: var(--red); }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 74%; max-width: 320px;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: rgba(140,10,25,.98); padding: 40px; transition: right .32s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.3rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav--open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav--open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .section { padding: 64px 20px; }
  .menu-controls { top: 66px; }
  .price-table th, .price-table td { padding: 9px 6px; font-size: .82rem; }
}
@media (max-width: 460px) {
  .price-table { font-size: .74rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   POLISH LAYER — richer texture, dividers, hover states, motion
   ========================================================================== */

/* ---- Hero refinements: vignette, animated glow, softer entrance ---- */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,220,140,.18), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(70,6,14,.55) 100%);
}
.hero__content { animation: rise 1s cubic-bezier(.2,.7,.2,1) both; }
.hero__logo { animation: heroLogo 1.1s cubic-bezier(.2,.8,.2,1) both; transition: transform .4s ease; }
.hero__logo:hover { transform: rotate(-1.2deg) scale(1.02); }
.hero__title { letter-spacing: .3px; }
.hero__cta .btn { position: relative; overflow: hidden; }
.hero__hours {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0; background: none; backdrop-filter: none; border: 0; border-radius: 0;
  color: var(--gold-soft); font-weight: 600; letter-spacing: .3px;
  position: relative; padding-top: 18px;
}
.hero__hours::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* ---- Button sheen sweep ---- */
.btn--gold::before, .btn--red::before, .btn--wa::before, .btn--nav::before, .btn--fb::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); transition: left .55s ease; pointer-events: none;
}
.btn { position: relative; overflow: hidden; }
.btn--gold:hover::before, .btn--red:hover::before, .btn--wa:hover::before,
.btn--nav:hover::before, .btn--fb:hover::before { left: 130%; }

/* ---- Scalloped / wave section dividers ----
   Each wave's own background = the section ABOVE it; the path fill = section BELOW. */
.wave { display: block; width: 100%; line-height: 0; margin: 0; }
.wave svg { display: block; width: 100%; height: 60px; }
.wave--to-cream { background: var(--red-dark); }         /* dark-red section → cream */
.wave--to-cream svg path { fill: var(--cream); }
.wave--to-dark { background: var(--cream); }             /* cream section → dark-red */
.wave--to-dark svg path { fill: var(--red-dark); }
@media (max-width: 640px) { .wave svg { height: 38px; } }

/* ---- Subtle food-dot texture on light sections ---- */
.section--deals, .section--menu {
  background-image:
    radial-gradient(rgba(200,16,46,.045) 1.5px, transparent 1.5px),
    radial-gradient(rgba(244,184,41,.05) 1.5px, transparent 1.5px);
  background-size: 34px 34px, 34px 34px;
  background-position: 0 0, 17px 17px;
}

/* ---- Eyebrow flourish ---- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section--branches .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.section--branches .eyebrow::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }

/* ---- Deal cards: corner ribbon + price pop ---- */
.deal { transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease; }
.deal__badge { display: inline-block; background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; padding: 4px 12px; border-radius: 999px; box-shadow: 0 4px 10px rgba(200,16,46,.25); }
.deal__price { transition: transform .25s ease; transform-origin: left; }
.deal:hover .deal__price { transform: scale(1.06); }
.deal::after {
  content: "🍕"; position: absolute; right: -14px; bottom: -14px; font-size: 4.5rem;
  opacity: .06; transform: rotate(-12deg); transition: opacity .25s ease, transform .25s ease;
}
.deal:hover::after { opacity: .12; transform: rotate(-4deg) scale(1.05); }

/* ---- Nav scrollspy active state ---- */
.nav__link.active { color: var(--gold-soft); }
.nav__link.active::after { width: 100%; }

/* ---- Menu category icon badge ---- */
.menu-cat__head { gap: 16px; }
.menu-cat__icon {
  display: grid; place-items: center; width: 56px; height: 56px; flex: 0 0 auto;
  font-size: 1.7rem; border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(200,16,46,.1);
  transition: transform .3s ease;
}
.menu-cat:hover .menu-cat__icon { transform: rotate(-6deg) scale(1.05); }
.menu-cat__title { position: relative; }

/* ---- Menu item hover: gold accent + price shift ---- */
.menu-item { position: relative; border-left: 3px solid transparent; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.menu-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px;
  background: linear-gradient(var(--gold), var(--red)); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.menu-item:hover { border-left-color: transparent; }
.menu-item:hover::before { transform: scaleY(1); }
.menu-item__price { transition: transform .2s ease; }
.menu-item:hover .menu-item__price { transform: translateX(-2px) scale(1.05); }

/* ---- Branch cards lift ---- */
.branch { transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease; }
.branch:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.branch__num { transition: transform .3s ease; }
.branch:hover .branch__num { transform: scale(1.12) rotate(-8deg); }

/* ---- Floating buttons: tooltips ---- */
.fab__btn { position: relative; }
.fab__btn::after {
  content: attr(data-label); position: absolute; right: 68px; top: 50%; transform: translateY(-50%) scale(.9);
  background: var(--ink); color: #fff; font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.fab__btn:hover::after { opacity: 1; transform: translateY(-50%) scale(1); }

/* ---- Staggered reveal for grids ---- */
.menu-grid .menu-item.reveal { transition-delay: calc(var(--i, 0) * 40ms); }
.deals .deal.reveal { transition-delay: calc(var(--i, 0) * 60ms); }
.branches .branch.reveal { transition-delay: calc(var(--i, 0) * 90ms); }
.reveal { will-change: opacity, transform; }

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll span { animation: none !important; }
}

@keyframes heroLogo { from { opacity: 0; transform: translateY(-16px) scale(.94); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   PROFESSIONAL BUTTONS v2  (overrides earlier button rules)
   Mobile-first: large touch targets, gradients, depth, crisp SVG icons.
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; letter-spacing: .2px;
  font-size: 1rem; line-height: 1; text-align: center;
  min-height: 52px; padding: 15px 24px; border: 0; border-radius: 16px;
  cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 20px rgba(80,20,10,.16), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .16s ease, box-shadow .2s ease, filter .2s ease;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn:active { transform: translateY(1px) scale(.99); box-shadow: 0 4px 10px rgba(80,20,10,.18), inset 0 1px 0 rgba(255,255,255,.2); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn .ic { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }

.btn--wa   { background: linear-gradient(135deg, #2fe171 0%, #14a94f 100%); box-shadow: 0 10px 24px rgba(20,169,79,.38), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--red  { background: linear-gradient(135deg, #ef233c 0%, #a80c1d 100%); box-shadow: 0 10px 24px rgba(200,16,46,.36), inset 0 1px 0 rgba(255,255,255,.28); }
.btn--fb   { background: linear-gradient(135deg, #3b8bff 0%, #1457d0 100%); box-shadow: 0 10px 24px rgba(24,119,242,.34), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--gold { background: linear-gradient(135deg, #ffd257 0%, #f2a51a 100%); color: var(--red-dark); box-shadow: 0 10px 24px rgba(242,168,26,.42), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--nav  { background: linear-gradient(135deg, #ffd257 0%, #f2a51a 100%); color: var(--red-dark); min-height: 44px; padding: 10px 20px; border-radius: 999px; box-shadow: 0 6px 16px rgba(242,168,26,.4); }
.btn--map  { background: #fff; color: var(--red-deep); border: 2px solid rgba(200,16,46,.22); box-shadow: 0 6px 16px rgba(80,20,10,.1); }
.btn--map:hover { background: var(--cream); border-color: var(--red); }
.btn--outline { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.8); box-shadow: none; backdrop-filter: blur(3px); }
.btn--outline:hover { background: #fff; color: var(--red-deep); }
.btn--block { width: 100%; }

/* ---- Hero CTA buttons: larger, with icons ---- */
.btn--hero { min-height: 58px; padding: 16px 30px; font-size: 1.08rem; font-weight: 700; border-radius: 18px; gap: 12px; }
.btn--hero .ic { width: 22px; height: 22px; }
.btn--gold.btn--hero { box-shadow: 0 12px 30px rgba(242,168,26,.5), inset 0 1px 0 rgba(255,255,255,.55); }
.btn--outline.btn--hero .ic { fill: var(--gold-soft); transition: fill .2s ease; }
.btn--outline.btn--hero:hover .ic { fill: var(--red-deep); }

/* keep the sheen sweep working on the new gradients */
.btn::before {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn:hover::before { left: 150%; }

/* ---- Branch card actions: icon WhatsApp + Facebook beside Call, then Directions ---- */
.branch__actions { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.branch__actions-row { display: flex; gap: 9px; }
.branch__actions .btn {
  min-height: 44px; padding: 9px 12px; font-size: .9rem; gap: 7px;
  border-radius: 12px; box-shadow: 0 4px 12px rgba(80,20,10,.14), inset 0 1px 0 rgba(255,255,255,.25);
}
.branch__actions .btn .ic { width: 18px; height: 18px; }
.branch__actions .btn--icon { flex: 0 0 auto; width: 52px; padding: 0; }   /* square icon-only */
.branch__actions .btn--grow { flex: 1 1 auto; }                            /* Call fills the row */
.branch__actions .btn--full { width: 100%; }
.branch__actions .btn--wa   { box-shadow: 0 4px 12px rgba(20,169,79,.28), inset 0 1px 0 rgba(255,255,255,.3); }
.branch__actions .btn--red  { box-shadow: 0 4px 12px rgba(200,16,46,.26), inset 0 1px 0 rgba(255,255,255,.25); }
.branch__actions .btn--fb   { box-shadow: 0 4px 12px rgba(24,119,242,.24), inset 0 1px 0 rgba(255,255,255,.25); }
.branch__actions .btn:hover { transform: translateY(-1px); }
.branch__phone { display: inline-flex; align-items: center; gap: 8px; }
.branch__phone .ic { width: 18px; height: 18px; fill: var(--red); }

/* ---- Contact: compact icon buttons (WhatsApp + Call) ---- */
.contact__btns { display: flex; flex-direction: row; gap: 14px; justify-content: flex-start; margin-top: 16px; }
.icon-btn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; position: relative; overflow: hidden; isolation: isolate;
  box-shadow: 0 8px 18px rgba(80,20,10,.22), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .16s ease, box-shadow .2s ease, filter .2s ease;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.icon-btn .ic { width: 26px; height: 26px; fill: currentColor; }
.icon-btn:hover { transform: translateY(-2px) scale(1.06); filter: brightness(1.05); }
.icon-btn:active { transform: scale(.95); }
.icon-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.icon-btn--wa { background: linear-gradient(135deg, #2fe171 0%, #14a94f 100%); box-shadow: 0 8px 18px rgba(20,169,79,.4), inset 0 1px 0 rgba(255,255,255,.35); }
.icon-btn--call { background: linear-gradient(135deg, #ef233c 0%, #a80c1d 100%); box-shadow: 0 8px 18px rgba(200,16,46,.38), inset 0 1px 0 rgba(255,255,255,.28); }

/* ---- Footer social as pill buttons w/ icon ---- */
.footer__social a { gap: 8px; }
.footer__social a .ic { width: 18px; height: 18px; fill: #dfe7ff; }
.footer__social a:hover .ic { fill: #fff; }

/* ==========================================================================
   FOOD GALLERY + LIGHTBOX
   ========================================================================== */
.section--gallery { background:
    radial-gradient(rgba(200,16,46,.045) 1.5px, transparent 1.5px) 0 0/34px 34px,
    var(--cream); }
.gallery-grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.gallery-item { position: relative; margin: 0; padding: 0; border: 0; cursor: pointer;
  border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--cream-2);
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__zoom { position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 10px; background: rgba(0,0,0,.55); color: #fff;
  font-size: 1rem; opacity: 0; transform: scale(.8); transition: opacity .2s ease, transform .2s ease; }
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 24px;
  background: rgba(15,4,6,.92); backdrop-filter: blur(4px); }
.lightbox.open { display: grid; animation: rise .25s ease; }
.lightbox__img { max-width: 94vw; max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 0;
  border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; line-height: 1;
  cursor: pointer; transition: background .2s ease; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }

/* ==========================================================================
   MOBILE-FIRST RESPONSIVENESS PASS  (99% of visitors are on phones)
   ========================================================================== */

/* Horizontal, swipeable category tabs on phones (no more wrapping into 4 rows) */
@media (max-width: 780px) {
  .menu-tabs {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    gap: 8px; padding: 4px 16px 10px; margin: 0 -16px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex: 0 0 auto; scroll-snap-align: start; min-height: 42px; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 72px; }
  .section { padding: 52px 18px; }
  .section__head { margin-bottom: 34px; }
  .nav { padding: 10px 0; }
  .nav--solid { padding: 6px 0; }
  .nav__logo { height: 40px; }

  .hero { padding: 104px 20px 90px; min-height: 92vh; }
  .hero__logo { width: min(320px, 78vw); }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; }

  /* Deals / menu / gallery: comfortable single-ish columns */
  .deals { grid-template-columns: 1fr; gap: 16px; }
  .deal { padding: 22px 20px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Keep WhatsApp/Call side-by-side (compact); Directions/Facebook span full */
  .branch__map { height: 190px; }

  .contact__card { padding: 34px 20px; border-radius: 22px; }
  .contact__grid { gap: 14px; }

  /* Bigger, friendlier floating buttons */
  .fab { right: 14px; bottom: 14px; gap: 14px; }
  .fab__btn { width: 58px; height: 58px; }
  .fab__btn::after { display: none; } /* no hover tooltips on touch */

  .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}

@media (max-width: 400px) {
  .section__title { font-size: 1.6rem; }
  .deal__price { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .btn { font-size: .96rem; padding: 14px 18px; }
}

/* Larger, easier-to-tap nav links & tabs everywhere */
.nav__link { padding: 8px 2px; }
.menu-tab { min-height: 40px; }

/* Prevent iOS auto-zoom on focusing the search field (needs >=16px) */
.menu-search { font-size: 16px; }

/* ==========================================================================
   COMPACT MENU — image category tiles + expanding panel
   (replaces the long always-open menu; big height savings)
   ========================================================================== */
.menu-search { margin: 0 auto 26px; }

/* Search box with a big custom clear button */
.menu-search-wrap { position: relative; max-width: 520px; margin: 0 auto 26px; }
.menu-search-wrap .menu-search { max-width: none; width: 100%; margin: 0; padding-right: 56px; }
.menu-search::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; display: none; }
.menu-search-clear {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--red); color: #fff; font-size: 1.7rem; line-height: 1; font-weight: 400;
  display: grid; place-items: center; box-shadow: 0 3px 10px rgba(200,16,46,.4);
  transition: background .2s ease, transform .15s ease; -webkit-tap-highlight-color: transparent;
}
.menu-search-clear:hover { background: var(--red-deep); transform: translateY(-50%) scale(1.08); }
.menu-search-clear:active { transform: translateY(-50%) scale(.94); }
.menu-search-clear[hidden] { display: none; }

.menu-tiles {
  max-width: 1040px; margin: 0 auto; display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.menu-tile {
  position: relative; display: flex; flex-direction: column; text-align: left;
  padding: 0; border: 2px solid transparent; border-radius: 18px; overflow: hidden;
  background: #fff; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  font-family: var(--font-body); -webkit-tap-highlight-color: transparent;
}
.menu-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-tile__img {
  display: block; width: 100%; aspect-ratio: 16 / 10;
  background-size: cover; background-position: center; transition: transform .5s ease;
}
.menu-tile:hover .menu-tile__img { transform: scale(1.07); }
.menu-tile__label {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 13px 16px 15px;
}
.menu-tile__name { font-weight: 700; font-size: 1.08rem; color: var(--ink); line-height: 1.2; }
.menu-tile__meta { color: var(--red); font-weight: 600; font-size: .82rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.menu-tile__meta em { font-style: normal; font-size: 1.2rem; transition: transform .2s ease; }
.menu-tile.active { border-color: var(--red); box-shadow: var(--shadow-md); }
.menu-tile.active .menu-tile__meta em { transform: rotate(90deg); }
.menu-tile.active::after {
  content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  border: 9px solid transparent; border-bottom-color: var(--red); /* pointer to panel */
}

.menu-panel { max-width: var(--maxw); margin: 0 auto; }
.menu-panel.open {
  margin-top: 26px; padding: 26px 24px; background: #fff; border-radius: 22px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(200,16,46,.1);
  animation: rise .3s ease;
}
.menu-panel .menu-cat { margin-bottom: 34px; }
.menu-panel .menu-cat:last-child { margin-bottom: 0; }
.menu-cat__bar { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.menu-cat__bar .menu-cat__title { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.menu-panel .pizza-table-wrap { max-width: none; }
.menu-panel .pizza-card { margin-bottom: 20px; }

/* Category image banner + left/right navigation inside the open panel */
.menu-panel__banner {
  position: relative; height: 200px; border-radius: 16px; overflow: hidden;
  margin-bottom: 22px; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.menu-panel__banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.62)); }
.menu-panel__cat { position: relative; z-index: 1; text-align: center; padding: 0 70px; }
.menu-panel__cat-name { display: block; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.15; text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.menu-panel__cat-meta { display: block; margin-top: 3px; font-weight: 600; font-size: .88rem; color: var(--gold-soft); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.menu-nav-btn {
  position: absolute; top: 58%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--red-deep); font-size: 1.9rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.35);
  transition: transform .16s ease, background .2s ease; -webkit-tap-highlight-color: transparent;
}
.menu-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.menu-nav-btn:active { transform: translateY(-50%) scale(.94); }
.menu-nav-btn--prev { left: 12px; }
.menu-nav-btn--next { right: 12px; }
.menu-panel__close {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 36px; height: 36px;
  border: 0; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; font-size: 1.5rem;
  line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s ease;
}
.menu-panel__close:hover { background: rgba(0,0,0,.75); }

@media (max-width: 680px) {
  .menu-panel__banner { height: 150px; margin-bottom: 18px; }
  .menu-nav-btn { width: 40px; height: 40px; font-size: 1.6rem; }
  .menu-panel__cat { padding: 0 56px; }
}

/* Search results header */
.menu-results-count { text-align: center; color: var(--ink-soft); font-weight: 600; margin-bottom: 18px; font-size: .95rem; }

/* ==========================================================================
   FULL-SCREEN CATEGORY MODAL ON PHONES
   Tapping a tile opens a modal that fills the screen (instead of expanding
   inline at the bottom). Sticky banner keeps close + ‹ › always reachable.
   ========================================================================== */
@media (max-width: 820px) {
  body.menu-modal-open { overflow: hidden; }
  .menu-panel.open.is-modal {
    position: fixed; inset: 0; z-index: 130; margin: 0; padding: 0;
    width: 100%; height: 100%; max-width: none; border: 0; border-radius: 0;
    background: var(--cream); box-shadow: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    animation: modalIn .28s ease;
    overscroll-behavior: contain;
  }
  .menu-panel.open.is-modal .menu-panel__banner {
    position: sticky; top: 0; z-index: 5; height: 178px; margin-bottom: 0; border-radius: 0;
  }
  .menu-panel.open.is-modal .menu-panel__body { padding: 18px 16px 56px; }
  .menu-panel.open.is-modal .menu-nav-btn { width: 44px; height: 44px; }
  .menu-panel.open.is-modal .menu-panel__close { width: 42px; height: 42px; font-size: 1.7rem; top: 12px; right: 14px; background: rgba(0,0,0,.55); }
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   COMPACT ZEBRA MENU LIST (inside the open panel) — dense, no overflow
   ========================================================================== */
.menu-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 720px; margin: 0 auto; width: 100%;
}
.menu-item {
  display: block; background: transparent; border: 0; border-left: 0;
  border-radius: 6px; padding: 9px 12px; margin: 0; transform: none;
  box-shadow: none;                        /* flat rows — no card shadow */
  min-width: 0; overflow-wrap: anywhere;   /* let grid/flex shrink, break long tokens */
}
.menu-item::before { display: none; }                 /* remove gold accent bar */
.menu-item:hover { transform: none; box-shadow: none; border-left-color: transparent; background: rgba(200,16,46,.09); }
.menu-item:hover .menu-item__price { transform: none; }
.menu-item:nth-child(even) { background: rgba(200,16,46,.055); }   /* zebra */

.menu-item__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 2px 12px; }
.menu-item__name { font-size: .95rem; font-weight: 600; flex: 1 1 auto; min-width: 0; }
.menu-item__price { font-size: .9rem; white-space: normal; text-align: right; flex: 0 1 auto; margin-left: auto; }
.menu-item__desc { font-size: .8rem; margin-top: 1px; line-height: 1.35; }

.menu-cat__note { margin-bottom: 12px; }
.menu-panel .menu-cat { margin-bottom: 26px; }

/* Two columns on wider screens, with per-row zebra kept in sync */
@media (min-width: 820px) {
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 26px; max-width: 980px; }
  .menu-item:nth-child(even) { background: transparent; }        /* reset single-col zebra */
  .menu-item:nth-child(4n+3), .menu-item:nth-child(4n+4) { background: rgba(200,16,46,.055); }
}

@media (max-width: 680px) {
  .menu-tiles { grid-template-columns: 1fr 1fr; gap: 12px; }
  .menu-tile__label { padding: 11px 12px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-tile__name { font-size: .95rem; }
  .menu-panel.open { padding: 20px 16px; margin-top: 20px; }
  .menu-cat__bar .menu-cat__title { font-size: 1.3rem; }
}

/* ==========================================================================
   TIGHTER VERTICAL RHYTHM — less scrolling everywhere
   ========================================================================== */
.section { padding: 64px 22px; }
.section__head { margin-bottom: 40px; }

/* ---- Compact hero + text wordmark (no duplicate logo) ---- */
.hero { min-height: auto; padding: 108px 22px 84px; }
.hero__wordmark { display: flex; flex-direction: column; align-items: center; gap: 2px; margin: 0 0 6px; line-height: 1; }
.hero__roma {
  font-family: var(--font-script); color: var(--gold-soft); font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 5.6rem); line-height: .9;
  text-shadow: 0 4px 18px rgba(0,0,0,.4);
}
.hero__rest {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: clamp(2px, 1.2vw, 6px);
  font-size: clamp(.95rem, 2.6vw, 1.5rem); margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero__script { margin: 4px 0 10px; font-size: clamp(1.3rem, 3.4vw, 2rem); }
.hero__sub { margin-bottom: 22px; }
.section--deals, .section--branches, .section--contact { padding-top: 60px; padding-bottom: 60px; }
.deals { gap: 18px; }
.deal { padding: 22px 22px 20px; }
.deal__desc { min-height: 0; }
.contact__card { padding: 42px 28px; }

@media (max-width: 680px) {
  .section { padding: 44px 18px; }
  .section__head { margin-bottom: 28px; }
  .hero { min-height: auto; padding: 92px 20px 66px; }
  .section--deals, .section--branches, .section--contact { padding-top: 44px; padding-bottom: 44px; }
}
