/* ============================================
   AMIZZA — Site vitrine
   Couleurs : Vert #3A7D44 · Corail #C0604A · Crème #FAF8F3
   Mobile-first
   ============================================ */

:root {
  --green: #3A7D44;
  --green-dark: #2A5C32;
  --green-light: #EAF3DE;
  --coral: #C0604A;
  --coral-light: #FAECE7;
  --cream: #FAF8F3;
  --gray-dark: #2C2C2A;
  --gray-mid: #6B6B68;
  --gray-light: #F1EFE8;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--gray-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.sans { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.script { font-family: 'Georgia', serif; font-style: italic; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58,125,68,0.1);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--green);
  letter-spacing: 0.5px;
}
.navbar-logo span { color: var(--coral); }

.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* BURGER */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 40px 20px;
}
.mobile-menu.open { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mobile-menu a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 20px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--green); background: var(--green-light); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, #4A9D54 70%, var(--green-dark) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(192,96,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(234,243,222,0.1) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.hero-logo-circle {
  width: 120px;
  height: 120px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}
.hero-logo-text {
  font-family: 'Georgia', serif;
  font-size: 36px;
  color: var(--green-light);
  font-style: italic;
}
.hero-logo-branch {
  font-size: 22px;
  display: block;
  color: var(--green-light);
  opacity: 0.7;
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero h1 em { color: var(--coral-light); }
.hero .subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero .tagline {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  color: #C0DD97;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-coral {
  background: var(--coral);
  color: white;
}
.btn-coral:hover { background: #A84E3A; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,96,74,0.3); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,125,68,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTIONS GENERIQUES
   ============================================ */
.section-padding {
  padding: 60px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Georgia', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 40px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto 40px;
  border-radius: 3px;
}

/* ============================================
   ABOUT PREVIEW (Accueil)
   ============================================ */
.about-preview {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream) 50%, var(--coral-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  color: var(--gray-mid);
  font-style: italic;
}
.about-image img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: var(--coral);
  border-radius: 4px 4px 0 0;
}
.about-text h3 {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text .link-arrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.about-text .link-arrow:hover { gap: 12px; }

/* ============================================
   MENU HIGHLIGHTS (Accueil)
   ============================================ */
.menu-highlights {
  background: var(--cream);
}
.pizza-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pizza-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.pizza-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--coral-light), #FFE4D6, var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.pizza-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pizza-card:hover .pizza-card-img img {
  transform: scale(1.05);
}
.pizza-card-img .photo-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}
.pizza-card-body {
  padding: 16px 20px;
}
.pizza-card-body h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 4px;
}
.pizza-card-body p {
  font-size: 13px;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 8px;
}
.pizza-card-body .price {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  background: var(--green-dark);
  padding: 40px 20px;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
.feature-item {
  color: white;
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.feature-item h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   INSTAGRAM / CTA SECTION
   ============================================ */
.cta-section {
  background: white;
  text-align: center;
}
.cta-section p {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.social-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: color var(--transition);
}
.social-link:hover { color: var(--green); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 20px 30px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-col h5 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
}
.footer-col a:hover { color: white; }
.footer-logo {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--green-light);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   PAGE: MENU (/menu)
   ============================================ */
.menu-page-header {
  background: var(--green-dark);
  padding: 100px 20px 40px;
  text-align: center;
}
.menu-page-header h1 {
  font-family: 'Georgia', serif;
  font-size: 36px;
  color: white;
  font-weight: 400;
}
.menu-page-header p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  color: #C0DD97;
  margin-top: 8px;
}

.menu-nav {
  background: white;
  display: flex;
  overflow-x: auto;
  border-bottom: 2px solid var(--green-light);
  position: sticky;
  top: 64px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.menu-nav button {
  flex: 1;
  min-width: 80px;
  padding: 14px 8px;
  border: none;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.menu-nav button.active {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}
.menu-nav button:hover { color: var(--green); }

.menu-section { display: none; padding-bottom: 40px; }
.menu-section.active { display: block; }

.menu-section-header {
  background: var(--green);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-section-header.coral { background: var(--coral); }
.menu-section-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu-section-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  font-style: italic;
  color: white;
  opacity: 0.85;
  margin-left: auto;
}

.dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: white;
  transition: background 0.15s;
}
.dish:nth-child(odd) { background: var(--gray-light); }
.dish:hover { background: var(--green-light); }
.dish-left { flex: 1; }
.dish-name {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 3px;
}
.dish-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11.5px;
  color: var(--gray-mid);
  font-style: italic;
  line-height: 1.5;
}
.dish-price {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  margin-left: 16px;
  padding-top: 1px;
}
.bois-cat {
  background: var(--coral-light);
  padding: 8px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-note {
  padding: 12px 20px;
  background: var(--green-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  color: var(--green-dark);
  font-style: italic;
  text-align: center;
}

.badge {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.badge-pop { background: #FAEEDA; color: #633806; }

/* Menu desktop: center and max-width */
.menu-content {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   PAGE: HISTOIRE
   ============================================ */
.story-hero {
  background: var(--green-dark);
  padding: 100px 20px 50px;
  text-align: center;
}
.story-hero h1 {
  font-family: 'Georgia', serif;
  font-size: 36px;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
}
.story-hero p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  color: #C0DD97;
}

.story-block {
  background: white;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.story-grid.reverse .story-image { order: 0; }
.story-text h3 {
  font-family: 'Georgia', serif;
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 16px;
  font-weight: 400;
}
.story-text p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.values-section {
  background: var(--green-light);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.value-card h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================
   PAGE: CONTACT
   ============================================ */
.contact-hero {
  background: var(--green-dark);
  padding: 100px 20px 50px;
  text-align: center;
}
.contact-hero h1 {
  font-family: 'Georgia', serif;
  font-size: 36px;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-hero p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  color: #C0DD97;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 16px;
}
.contact-info-card p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 2;
}
.contact-info-card a {
  color: var(--green);
  font-weight: 500;
}
.contact-info-card a:hover { color: var(--green-dark); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.uber-cta {
  background: var(--green);
  text-align: center;
  padding: 50px 20px;
}
.uber-cta h3 {
  font-family: 'Georgia', serif;
  font-size: 26px;
  color: white;
  font-weight: 400;
  margin-bottom: 12px;
}
.uber-cta p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero h1 { font-size: 52px; }
  .hero .tagline { font-size: 20px; }
  .hero-ctas { flex-direction: row; justify-content: center; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .pizza-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid.reverse .story-image { order: -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .section-padding { padding: 80px 40px; }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .burger { display: none; }
  .nav-links { display: flex; }
  .hero h1 { font-size: 58px; }
  .pizza-cards { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
