/* ═══════════════════════════════════════════════════════════════
   Pizza Master — Stylesheet
   Traditional Italian palette: Cream · Red · Green
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --red:         #c8202b;
  --red-dark:    #9e161f;
  --green:       #1b7e3c;
  --green-dark:  #145c2b;
  --cream:       #fdf6ec;
  --cream-dark:  #f0e2cc;
  --charcoal:    #2b2018;
  --grey:        #5a4a3a;
  --grey-light:  #8c7a6a;
  --gold:        #d9a441;
  --white:       #ffffff;
  --nav-h:       68px;
  --ribbon-h:    18px;
  --max-w:       1180px;
  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', system-ui, -apple-system, sans-serif;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 2px 8px rgba(43,32,24,.10);
  --shadow-md:   0 6px 24px rgba(43,32,24,.15);
  --t:           .22s ease;
}

/* ── Site Loader (splash screen) ───────────────────────────────── */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.site-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0 24px;
}
.site-loader__logo {
  width: 80px;
  height: 80px;
}
.site-loader__pizza {
  font-size: 3.2rem;
  animation: loaderSpin 1.4s linear infinite;
  display: block;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
.site-loader__msg {
  color: #fff8f0;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .02em;
  min-height: 1.5em;
  transition: opacity .3s ease;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Italian Flag Ribbon ────────────────────────────────────────── */
.ribbon {
  display: flex;
  height: var(--ribbon-h);
  position: sticky;
  top: 0;
  z-index: 200;
}
.ribbon__green { flex: 1; background: var(--green); }
.ribbon__white { flex: 1; background: var(--white); border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; }
.ribbon__red   { flex: 1; background: var(--red); }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: var(--ribbon-h);
  z-index: 199;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  width: 48px;
  height: 48px;
}
.nav__logo-text {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.nav__logo-text em { color: var(--red); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t);
}
.nav__links a:hover, .nav__links a.active {
  background: var(--cream-dark);
  color: var(--green-dark);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--red   { background: var(--red);   color: var(--white); }
.btn--red:hover   { background: var(--red-dark); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--outline-green {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn--outline-green:hover { background: var(--green); color: var(--white); }
.btn--whatsapp { background: #25d366; color: var(--white); }
.btn--whatsapp:hover { background: #1aad52; }
.btn--white { background: var(--white); color: var(--red); }
.btn--white:hover { background: var(--cream); }
.btn--white-ol { background: transparent; border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn--white-ol:hover { background: rgba(255,255,255,.15); }
.btn--lg { padding: 14px 32px; font-size: .98rem; }

/* ── Hamburger ──────────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--charcoal);
}
.nav__mobile a.btn { border-bottom: none; margin-top: 8px; justify-content: center; }
.nav__mobile a:not(.btn):hover { color: var(--green); }

/* ── Hero (Home) ────────────────────────────────────────────────── */
.hero { display: block; }
.hero__img {
  width: 100%;
  display: block;
  height: 480px;
  object-fit: cover;
  object-position: center;
}
.hero__cta-bar {
  background: var(--cream);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--cream-dark);
}
.hero__note {
  background: var(--cream);
  text-align: center;
  font-size: .82rem;
  color: var(--grey-light);
  padding: .6rem 1rem 1.2rem;
}

/* ── Page Banner (inner pages) ──────────────────────────────────── */
.page-banner { display: block; }
.page-banner__img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}
.page-title-bar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
}
.page-title-bar h1 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Generic Section ────────────────────────────────────────────── */
.section { padding: 68px 24px; }
.section--alt { background: var(--cream-dark); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 52px; }
.section__eyebrow {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
}
.section__divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── About Strip ────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 52px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.about__text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about__text h2 em { color: var(--red); font-style: italic; }
.about__text p { color: var(--grey); font-size: .97rem; margin-bottom: 14px; }
.about__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid rgba(27,126,60,.25);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
}

/* ── Featured Pizza Grid ────────────────────────────────────────── */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
  gap: 20px;
}
.pizza-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.pizza-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pizza-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.pizza-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transition: transform .4s ease;
}
.pizza-card:hover .pizza-card__img img { transform: scale(1.06); }
.pizza-card__body { padding: 14px 16px 18px; }
.pizza-card__name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 5px;
}
.pizza-card__desc {
  font-size: .76rem;
  color: var(--grey-light);
  line-height: 1.45;
  margin-bottom: 10px;
}
.pizza-card__price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--red);
}

/* ── Menu Page ──────────────────────────────────────────────────── */
.menu-wrap { max-width: var(--max-w); margin: 0 auto; }
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(200,32,43,.07);
  border: 1px solid rgba(200,32,43,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--charcoal);
  margin-bottom: 40px;
}
.notice__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* ── Menu Search Bar ────────────────────────────────────────────── */
.search-bar {
  position: sticky;
  top: calc(var(--ribbon-h) + var(--nav-h));
  z-index: 90;
  background: var(--cream);
  padding: 14px 0 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--cream-dark);
}
.search-bar__wrap { position: relative; display: flex; align-items: center; }
.search-bar__icon {
  position: absolute;
  left: 14px;
  color: var(--grey-light);
  pointer-events: none;
}
.search-bar__input {
  width: 100%;
  padding: 12px 44px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 40px;
  background: #fff;
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .15s;
}
.search-bar__input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,126,60,.12); }
.search-bar__input::-webkit-search-cancel-button { display: none; }
.search-bar__clear {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-light);
  font-size: .95rem;
  padding: 4px 6px;
  line-height: 1;
}
.search-bar__clear:hover { color: var(--charcoal); }
.menu-no-results {
  text-align: center;
  color: var(--grey-light);
  padding: 2.5rem 1rem;
  font-size: 1rem;
}

.menu-section { margin-bottom: 60px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section__heading {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-section__heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green);
  transition: border-color var(--t), box-shadow var(--t);
}
.menu-item:hover { border-left-color: var(--red); box-shadow: var(--shadow-md); }
.menu-item__info { flex: 1; }
.menu-item__name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 5px;
}
.menu-item__desc { font-size: .8rem; color: var(--grey-light); line-height: 1.5; }
.menu-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}
.toppings-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.topping-pill {
  background: var(--cream-dark);
  border: 1px solid rgba(27,126,60,.2);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
}
.menu-poster-wrap {
  margin-top: 48px;
  text-align: center;
}
.menu-poster-wrap img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.menu-poster-wrap p {
  font-size: .82rem;
  color: var(--grey-light);
  margin-top: 10px;
}

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  aspect-ratio: 1 / 1;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); border-color: var(--gold); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,10,5,.9);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: min(580px, 100%);
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  opacity: .8;
  transition: opacity var(--t);
  cursor: pointer;
}
.lightbox__close:hover { opacity: 1; }

/* ── Review Cards ───────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--gold);
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 7rem;
  line-height: .75;
  color: var(--cream-dark);
  position: absolute;
  top: 14px;
  left: 18px;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.review-card__quote {
  position: relative;
  z-index: 1;
  font-size: .97rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 12px;
  font-style: italic;
}
.review-card__translation {
  font-size: .82rem;
  color: var(--grey-light);
  font-style: normal;
  margin-bottom: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dark);
}
.review-card__author {
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__author::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.contact-block:last-child { margin-bottom: 0; }
.contact-block h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-row:last-child { border-bottom: none; }
.contact-row__icon { font-size: 1.3rem; flex-shrink: 0; width: 34px; text-align: center; }
.contact-row__info strong { display: block; font-size: .95rem; }
.contact-row__info span  { font-size: .85rem; color: var(--grey); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: .9rem; }
.hours-table td:first-child { color: var(--charcoal); font-weight: 500; }
.hours-table td:last-child  { color: var(--grey); text-align: right; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); filter: brightness(1.1); }
.social-btn--fb { background: #1877f2; color: var(--white); }
.social-btn--ig { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: var(--white); }
.coastal-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  image-rendering: -webkit-optimize-contrast;
  margin-bottom: 16px;
}

/* ── Find Us (home) ─────────────────────────────────────────────── */
.find-us {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.find-us__col { flex: 1; min-width: 180px; }
.find-us__col h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--green); margin-bottom: 14px; }
.find-us__col p { font-size: .9rem; color: var(--grey); line-height: 1.8; }
.find-us__col ul li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .88rem;
}
.find-us__col ul li:last-child { border-bottom: none; }
.find-us__col ul li span:first-child { color: var(--grey); }
.find-us__col ul li span:last-child  { color: var(--charcoal); font-weight: 500; }

/* ── CTA Band ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-band p { font-size: 1rem; opacity: .88; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.78);
  padding: 60px 24px 28px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo img { width: 44px; height: 44px; }
.footer__logo-text { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer__tagline { font-size: .87rem; line-height: 1.75; color: rgba(255,255,255,.58); max-width: 260px; }
.footer__heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: .87rem; color: rgba(255,255,255,.68); transition: color var(--t); }
.footer__links a:hover { color: var(--white); }
.footer__hours { display: flex; flex-direction: column; gap: 0; }
.footer__hours li { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.62); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__hours li:last-child { border-bottom: none; }
.footer__hours li span:last-child { color: rgba(255,255,255,.82); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .81rem;
  color: rgba(255,255,255,.46);
}
.footer__social { display: flex; gap: 10px; }
.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--t);
}
.footer__social-icon:hover { background: rgba(255,255,255,.22); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__img-wrap img { margin: 0 auto; }
  .about__badges { justify-content: center; }
}

@media (max-width: 700px) {
  :root { --nav-h: 60px; --ribbon-h: 12px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__img { height: 280px; }
  .page-banner__img { height: 160px; }
  .section { padding: 52px 20px; }
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .find-us { padding: 26px; gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid > *:first-child { grid-column: auto; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero__cta-bar { flex-direction: column; align-items: stretch; }
  .hero__cta-bar .btn { justify-content: center; }
}
