/*
Theme Name: Fornace Pizza
Theme URI: https://fornacepizza.com
Author: Fornace Pizza
Author URI: https://fornacepizza.com
Description: A warm, light, image-rich restaurant theme for Fornace Pizza — featuring wood-fired Neapolitan pizza, online ordering, full menu, gallery, and weekly specials.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: restaurant, food, pizza, light, one-column, custom-menu, featured-images, full-width-template
Text Domain: fornace
*/

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --white:       #ffffff;
  --off-white:   #fdfaf6;
  --warm-50:     #fef9f2;
  --stone:       #f5f0e8;
  --red:         #d4350f;
  --red-hover:   #f04e22;
  --terracotta:  #c9581e;
  --green:       #2d5a27;
  --ink:         #1a1410;
  --gray-dark:   #4a4540;
  --gray-mid:    #8a8178;
  --gray-light:  #d4cfc8;
  --gold:        #c89820;
  --gold-light:  #f0c040;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 100px;

  --shadow-sm:  0 2px 12px rgba(26,20,16,0.06);
  --shadow-md:  0 8px 32px rgba(26,20,16,0.10);
  --shadow-lg:  0 16px 48px rgba(26,20,16,0.14);

  --transition: 0.25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; color: var(--gray-dark); }

/* ── LAYOUT UTILITIES ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 5rem; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.section-body {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 52ch;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.9rem 2rem; border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  transition: all var(--transition); border: none; cursor: pointer;
}
.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 18px rgba(212,53,15,0.28);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,53,15,0.38); color: #fff; }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--gray-light);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-white {
  background: #fff; color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.18); }
.btn-white-green {
  background: #fff; color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-ghost {
  background: none; color: var(--ink); padding: 0; font-size: 0.9rem; font-weight: 500; border: none;
}
.btn-ghost:hover { color: var(--red); }

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26,20,16,0.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(26,20,16,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem; max-width: 100%;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--ink); letter-spacing: 0.02em;
}
.site-logo span { color: var(--red); font-style: italic; }
.main-nav { display: flex; gap: 2.5rem; align-items: center; }
.main-nav a {
  font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray-dark); transition: color var(--transition);
}
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--red); }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-pill);
  font-size: 0.84rem !important; font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(212,53,15,0.28);
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--red-hover) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--stone);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.75rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--stone); color: var(--ink); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta { border-bottom: none; margin-top: 0.5rem; text-align: center; border-radius: var(--radius-pill); background: var(--red); color: #fff; }

/* ── HERO ── */
.hero-section {
  padding-top: 68px;
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,20,16,0.038) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff8e6; border: 1px solid var(--gold-light);
  padding: 0.35rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #a07800;
  margin-bottom: 2rem; width: fit-content;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  font-weight: 700; line-height: 1.0;
  color: var(--ink); margin-bottom: 1.6rem;
}
.hero-title em { color: var(--red); font-style: italic; display: block; }
.hero-body {
  font-size: 1.05rem; line-height: 1.78; font-weight: 300;
  color: var(--gray-dark); max-width: 42ch; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--gray-light);
}
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.76rem; color: var(--gray-mid); margin-top: 0.2rem; }
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  height: 100%; gap: 4px;
}
.mosaic-img { overflow: hidden; position: relative; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-img:hover img { transform: scale(1.05); }
.mosaic-img.tall { grid-row: span 2; }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,20,16,0.3));
  pointer-events: none;
}
.mosaic-caption {
  position: absolute; bottom: 0.8rem; left: 1rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); font-weight: 500;
}

/* ── MARQUEE ── */
.marquee-strip { background: var(--red); overflow: hidden; padding: 0.9rem 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 34s linear infinite; }
.marquee-item {
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0 2rem; display: inline-flex; align-items: center; gap: 1rem;
}
.marquee-dot { color: rgba(255,255,255,0.38); font-size: 0.45rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INGREDIENTS ── */
.ingredients-section { padding: 7rem 5rem; background: var(--white); }
.ingredients-header { max-width: 620px; margin: 0 auto 4rem; text-align: center; }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.ingredient-card { text-align: center; }
.ingredient-img {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  margin-bottom: 1.2rem; background: var(--stone);
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.ingredient-card:hover .ingredient-img { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ingredient-img img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.ingredient-origin { font-size: 0.78rem; color: var(--gray-mid); letter-spacing: 0.04em; }

/* ── FEATURED MENU ── */
.featured-section { padding: 7rem 5rem; background: var(--warm-50); }
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.pizza-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pizza-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition); display: block;
}
.pizza-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pizza-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--stone); }
.pizza-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pizza-card:hover .pizza-card-img img { transform: scale(1.07); }
.pizza-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: #fff; color: var(--red);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: var(--radius-pill);
}
.pizza-card-body { padding: 1.5rem; }
.pizza-card-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.pizza-card-desc { font-size: 0.84rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 1rem; }
.pizza-card-footer { display: flex; justify-content: space-between; align-items: center; }
.pizza-price { font-weight: 700; font-size: 1.05rem; }
.pizza-add {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pizza-add:hover { background: var(--red-hover); transform: scale(1.12); }

/* ── FULL WIDTH BREAK ── */
.img-break { height: 520px; position: relative; overflow: hidden; }
.img-break img { width: 100%; height: 100%; object-fit: cover; }
.img-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,20,16,0.6) 0%, transparent 65%);
  display: flex; align-items: center; padding: 5rem;
}
.img-break-text { max-width: 500px; }
.img-break-text .section-label { color: rgba(255,255,255,0.6); }
.img-break-text h2 { color: #fff; margin-bottom: 1.2rem; }
.img-break-text p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; }

/* ── PHOTO GALLERY ── */
.gallery-section { padding: 7rem 5rem; background: var(--white); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gallery-cell { overflow: hidden; border-radius: var(--radius-md); position: relative; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell.tall { grid-row: span 2; }

/* ── SPECIALS ── */
.specials-section { background: var(--stone); padding: 7rem 5rem; }
.specials-header { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.special-card {
  background: var(--white); padding: 2.2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.special-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--terracotta));
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.special-day { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; }
.special-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.6rem; }
.special-desc { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.65; margin-bottom: 1.2rem; }
.special-deal { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--red); }

/* ── REVIEWS ── */
.reviews-section { padding: 7rem 5rem; background: var(--white); }
.reviews-header { text-align: center; max-width: 500px; margin: 0 auto 3.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card {
  border: 1.5px solid var(--gray-light); padding: 2rem; border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover { border-color: var(--red); box-shadow: 0 4px 24px rgba(212,53,15,0.08); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-text { font-size: 0.94rem; color: var(--gray-dark); line-height: 1.78; margin-bottom: 1.5rem; font-style: italic; }
.review-author { font-size: 0.84rem; font-weight: 600; }
.review-platform { font-size: 0.74rem; color: var(--gray-mid); margin-top: 0.15rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green); padding: 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 0.4rem; }

/* ── HOURS ── */
.info-section {
  padding: 7rem 5rem; background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.hours-table tr { border-bottom: 1px solid var(--gray-light); }
.hours-table td { padding: 0.9rem 0; font-size: 0.94rem; }
.hours-table td:last-child { text-align: right; color: var(--gray-mid); }
.hours-closed { opacity: 0.38 !important; }
.hours-today { font-weight: 700; color: var(--red) !important; }
.map-placeholder {
  margin-top: 2rem; border-radius: var(--radius-md); height: 260px;
  background: var(--stone); border: 1px solid var(--gray-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray-mid); font-size: 0.84rem; gap: 0.5rem;
}
.map-placeholder span { font-size: 2.5rem; }
.address-block { margin-top: 1.5rem; line-height: 2.1; font-size: 0.94rem; color: var(--gray-dark); }

/* ── INNER PAGE HEADER ── */
.page-header { background: var(--warm-50); padding: 8rem 5rem 4rem; }
.page-header h1 { margin-bottom: 0.8rem; }
.page-header .lead { font-size: 1.05rem; color: var(--gray-dark); font-weight: 300; max-width: 56ch; }

/* ── MENU PAGE ── */
.menu-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 5rem; background: var(--warm-50); overflow: hidden; }
.menu-hero-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 8px; }
.menu-hero-imgs img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.menu-hero-imgs img:first-child { grid-row: span 2; border-radius: var(--radius-md) 0 0 var(--radius-md); }

.category-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-light);
  padding: 0 5rem; display: flex; overflow-x: auto;
  position: sticky; top: 68px; z-index: 50;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 1.1rem 1.6rem; border: none; background: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray-mid); border-bottom: 3px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.cat-tab:hover { color: var(--ink); }
.cat-tab.active { color: var(--red); border-bottom-color: var(--red); }

.menu-body { padding: 3rem 5rem 6rem; }
.menu-block { display: none; }
.menu-block.active { display: block; }
.menu-block-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 0.3rem; }
.menu-block-sub { color: var(--gray-mid); font-size: 0.88rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-light); }

/* Pizza image cards */
.pizza-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.pmenu-card { border: 1px solid var(--gray-light); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); background: var(--white); }
.pmenu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.pmenu-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--stone); }
.pmenu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pmenu-card:hover .pmenu-img img { transform: scale(1.07); }
.pmenu-pill { position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: var(--radius-pill); }
.pill-fave { background: #fff3f1; color: var(--red); }
.pill-new  { background: #fffbe6; color: #a07800; }
.pill-veg  { background: #f0f8ed; color: #2d6622; }
.pill-spicy{ background: #fff3f1; color: var(--red); }
.pmenu-body { padding: 1.2rem 1.3rem 1.3rem; }
.pmenu-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.pmenu-desc { color: var(--gray-mid); font-size: 0.82rem; line-height: 1.6; margin-bottom: 0.9rem; }
.pmenu-footer { display: flex; justify-content: space-between; align-items: center; }
.pmenu-price { font-weight: 700; font-size: 1rem; }
.pmenu-sizes { font-size: 0.72rem; color: var(--gray-mid); }
.pmenu-add { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; border: none; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.pmenu-add:hover { background: var(--red-hover); transform: scale(1.1); }

/* List menu items */
.menu-list { border-top: 1px solid var(--gray-light); }
.menu-list-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--gray-light); }
.menu-list-info { flex: 1; }
.menu-list-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.menu-list-desc { color: var(--gray-mid); font-size: 0.84rem; line-height: 1.6; }
.menu-list-tags { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: var(--radius-pill); }
.tag-v { background: #f0f8ed; color: #2d6622; }
.tag-s { background: #fff3f1; color: var(--red); }
.tag-n { background: #fffbe6; color: #a07800; }
.tag-g { background: #eef2ff; color: #3b4eb5; }
.menu-list-right { text-align: right; flex-shrink: 0; }
.menu-list-price { font-weight: 700; font-size: 1rem; }
.menu-list-note { font-size: 0.72rem; color: var(--gray-mid); margin-top: 0.2rem; }
.menu-list-add { display: inline-flex; margin-top: 0.6rem; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; border: none; font-size: 1rem; align-items: center; justify-content: center; transition: all var(--transition); }
.menu-list-add:hover { background: var(--red-hover); transform: scale(1.1); }

.starters-img-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border-radius: var(--radius-md); overflow: hidden; height: 180px; margin-bottom: 2.5rem; }
.starters-img-row img { width: 100%; height: 100%; object-fit: cover; }

/* ── ORDER PAGE ── */
.order-layout { display: grid; grid-template-columns: 1fr 390px; min-height: calc(100vh - 68px); }
.order-main { padding: 2.5rem 3rem 6rem; background: var(--white); }
.order-sidebar { background: var(--warm-50); border-left: 1px solid var(--gray-light); position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; padding: 2rem; display: flex; flex-direction: column; }

.method-toggle { display: flex; background: var(--stone); border-radius: var(--radius-pill); padding: 4px; margin-bottom: 2.5rem; width: fit-content; }
.method-btn { padding: 0.6rem 1.6rem; border-radius: var(--radius-pill); border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.84rem; font-weight: 500; background: none; color: var(--gray-mid); transition: all var(--transition); }
.method-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(26,20,16,0.1); }

.order-section-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
.order-section-sub { color: var(--gray-mid); font-size: 0.84rem; margin-bottom: 1.2rem; }
.order-section { margin-bottom: 2.5rem; }

.order-form { background: var(--warm-50); border: 1px solid var(--gray-light); border-radius: var(--radius-md); padding: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-group label { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.94rem; color: var(--ink); background: var(--white); outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 80px; }

.time-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.time-chip { padding: 0.45rem 1rem; border: 1.5px solid var(--gray-light); border-radius: var(--radius-pill); font-size: 0.81rem; cursor: pointer; color: var(--gray-dark); background: var(--white); font-family: var(--font-body); transition: all var(--transition); }
.time-chip:hover { border-color: var(--red); color: var(--red); }
.time-chip.sel { background: var(--red); border-color: var(--red); color: #fff; }

.order-items-list { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-light); }
.order-item-row { background: var(--white); display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--stone); transition: background var(--transition); }
.order-item-row:last-child { border-bottom: none; }
.order-item-row:hover { background: var(--warm-50); }
.item-photo { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.item-info { flex: 1; }
.item-name { font-weight: 600; font-size: 0.94rem; }
.item-meta { color: var(--gray-mid); font-size: 0.78rem; margin-top: 0.12rem; }
.size-chips { display: flex; gap: 0.3rem; margin-top: 0.4rem; }
.size-chip { font-size: 0.68rem; padding: 0.2rem 0.55rem; border: 1px solid var(--gray-light); border-radius: var(--radius-pill); cursor: pointer; color: var(--gray-mid); transition: all var(--transition); background: none; font-family: var(--font-body); }
.size-chip.sel, .size-chip:hover { border-color: var(--red); color: var(--red); }
.qty-wrap { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-light); background: none; cursor: pointer; font-size: 1rem; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-btn.plus { background: var(--red); border-color: var(--red); color: #fff; }
.qty-btn.plus:hover { background: var(--red-hover); }
.qty-n { font-weight: 600; font-size: 0.88rem; min-width: 1.4rem; text-align: center; }

/* Cart sidebar */
.cart-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.2rem; }
.cart-sub { font-size: 0.78rem; color: var(--gray-mid); margin-bottom: 1.5rem; }
.free-delivery { background: #fffbe6; border: 1px solid #f0c040; border-radius: var(--radius-sm); padding: 0.6rem 0.9rem; font-size: 0.78rem; color: #7a6200; margin-bottom: 1rem; }
.cart-empty { color: var(--gray-mid); text-align: center; padding: 3rem 1rem; font-size: 0.88rem; line-height: 1.8; }
.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-row { display: flex; justify-content: space-between; padding: 0.9rem 0; border-bottom: 1px solid var(--gray-light); }
.cart-row-name { font-size: 0.87rem; font-weight: 500; }
.cart-row-meta { font-size: 0.73rem; color: var(--gray-mid); margin-top: 0.12rem; }
.cart-row-remove { font-size: 0.7rem; color: var(--gray-light); cursor: pointer; display: block; margin-top: 0.2rem; transition: color var(--transition); }
.cart-row-remove:hover { color: var(--red); }
.cart-row-price { font-weight: 700; font-size: 0.88rem; }
.totals { border-top: 1px solid var(--gray-light); padding-top: 1rem; margin-top: 1rem; }
.totals-line { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--gray-dark); margin-bottom: 0.5rem; }
.totals-total { display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 700; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--gray-light); }
.promo-row { display: flex; gap: 0.5rem; margin-top: 1rem; }
.promo-input { flex: 1; padding: 0.6rem 0.9rem; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.84rem; color: var(--ink); outline: none; background: var(--white); }
.promo-input:focus { border-color: var(--red); }
.promo-apply { padding: 0.6rem 1rem; background: var(--stone); border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.78rem; cursor: pointer; color: var(--gray-dark); transition: all var(--transition); }
.promo-apply:hover { background: var(--gray-light); }
.checkout-btn { width: 100%; padding: 1.1rem; margin-top: 1.2rem; background: var(--red); color: #fff; border: none; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: var(--radius-pill); transition: all var(--transition); box-shadow: 0 4px 16px rgba(212,53,15,0.25); }
.checkout-btn:hover:not(:disabled) { background: var(--red-hover); transform: translateY(-1px); }
.checkout-btn:disabled { background: var(--gray-light); cursor: not-allowed; box-shadow: none; color: var(--gray-mid); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(26,20,16,0.5); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); max-width: 460px; width: 92%; padding: 3rem; text-align: center; border-radius: var(--radius-lg); animation: pop 0.3s ease; box-shadow: 0 20px 60px rgba(26,20,16,0.22); }
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon { font-size: 4rem; margin-bottom: 1rem; }
.modal h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.8rem; }
.modal p { color: var(--gray-dark); line-height: 1.75; margin-bottom: 1.5rem; font-size: 0.94rem; }
.modal-info { background: var(--warm-50); border: 1px solid var(--gray-light); border-radius: var(--radius-md); padding: 1.2rem; margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.8; }
.modal-close { width: 100%; padding: 1rem; background: var(--red); color: #fff; border: none; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: var(--radius-pill); transition: background var(--transition); }
.modal-close:hover { background: var(--red-hover); }

/* ── FOOTER ── */
.site-footer { background: var(--ink); padding: 4.5rem 5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--red); font-style: italic; }
.footer-tagline { color: rgba(255,255,255,0.38); font-size: 0.88rem; line-height: 1.78; max-width: 28ch; }
.footer-col-title { font-size: 0.73rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.38); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.48); font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.22); font-size: 0.78rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-inner { padding: 1rem 1.5rem; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-mosaic-wrap { height: 60vw; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .ingredients-section, .featured-section, .gallery-section, .specials-section,
  .reviews-section, .info-section, .cta-band, .section-pad { padding: 4rem 1.5rem; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .pizza-grid, .pizza-menu-grid, .specials-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-cell.tall { grid-row: auto; }
  .info-section { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer { padding: 3rem 1.5rem 2rem; }
  .img-break-overlay { padding: 2rem; }
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; height: auto; }
  .order-main { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .menu-hero-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .category-bar { padding: 0 1.5rem; }
  .menu-body { padding: 2.5rem 1.5rem 5rem; }
  .starters-img-row { grid-template-columns: 1fr 1fr; height: 240px; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .featured-header { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── WORDPRESS CORE COMPAT ── */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
