/* ============================================================
   Ti' Terre Sainte Pizzeria - Main Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f97316;
  --orange-dark: #ea6600;
  --orange-light: #fff7ed;
  --green: #1f7a36;
  --green-dark: #155a27;
  --green-light: #f0fdf4;
  --cream: #fef9f0;
  --dark: #1a0a00;
  --text: #3d2000;
  --text-light: #7c5c3a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(249, 115, 22, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle dough/texture pattern on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 122, 54, 0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='0' cy='0' r='1'/%3E%3Ccircle cx='60' cy='0' r='1'/%3E%3Ccircle cx='0' cy='60' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.section-badge.green {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: rgba(31, 122, 54, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(31, 122, 54, 0.3);
}

.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: height var(--transition);
}

.header.scrolled .logo img {
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  padding: 0.5rem 0.875rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

nav a:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  background: var(--green-light);
  border-radius: 50px;
  border: 1px solid rgba(31, 122, 54, 0.2);
  transition: all var(--transition);
}

.header-phone:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 10, 0, 0.75) 0%,
    rgba(26, 10, 0, 0.55) 50%,
    rgba(249, 115, 22, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 8rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-feature svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Floating status card */
.hero-status {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  animation: floatUp 0.8s ease-out 0.5s both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.status-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.status-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

.status-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #f0f0f0;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.85rem;
}

.rating-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

.scroll-hint svg {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   SECTION: NOTRE CARTE
   ============================================================ */
.menu-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--orange));
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.menu-intro-text h3 {
  color: var(--orange-dark);
  margin-bottom: 0.75rem;
}

.menu-intro-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.tag.green {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: rgba(31, 122, 54, 0.15);
}

.menu-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-visual:hover img {
  transform: scale(1.04);
}

.menu-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(26, 10, 0, 0.7));
  color: var(--white);
  font-size: 0.85rem;
}

.menu-visual-overlay strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* Pizza category tabs */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0;
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  border-radius: 4px 4px 0 0;
}

.menu-tab:hover { color: var(--orange); }

.menu-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pizza-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid rgba(249, 115, 22, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pizza-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transition: transform var(--transition);
}

.pizza-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.pizza-card:hover::before {
  transform: scaleY(1);
}

.pizza-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.pizza-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pizza-prices {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-size {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 1rem;
}

.price-divider {
  width: 1px;
  height: 28px;
  background: #e5e7eb;
}

.menu-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.menu-cta p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Supplements */
.supplements {
  background: var(--orange-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.supplements h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  margin-bottom: 0.75rem;
}

.supplements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.supplement-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(249, 115, 22, 0.2);
}

/* ============================================================
   SECTION: INFOS & LIVRAISON
   ============================================================ */
.info-section {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.info-section::after {
  content: '🍕';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 18rem;
  opacity: 0.025;
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.info-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.info-card-header h3 {
  color: var(--dark);
}

/* Hours table */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }

.day-name {
  font-weight: 600;
  color: var(--text);
  min-width: 130px;
}

.day-hours {
  color: var(--text-light);
}

.day-hours.open {
  color: var(--green);
  font-weight: 600;
}

.day-hours.closed {
  color: #dc2626;
  font-style: italic;
}

.today-highlight {
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  border-left: 3px solid var(--orange);
}

/* Delivery zones */
.delivery-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-dark);
  border: 1px solid rgba(31, 122, 54, 0.12);
}

.zone-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.delivery-note {
  background: #fff7ed;
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  font-size: 0.85rem;
  color: var(--text-light);
  border-left: 3px solid var(--orange);
  line-height: 1.6;
}

/* Contact card */
.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

/* ============================================================
   SECTION: AVIS CLIENTS
   ============================================================ */
.reviews-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reviews-section .section-header h2 {
  color: var(--white);
}

.reviews-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.ratings-overview {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.rating-platform {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem 2.5rem;
  text-align: center;
  color: var(--white);
  min-width: 200px;
  transition: all var(--transition);
}

.rating-platform:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.rating-logo {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.rating-max {
  font-size: 1.25rem;
  opacity: 0.6;
  color: var(--white);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.rating-count {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-avatar.green { background: var(--green); }
.reviewer-avatar.dark { background: var(--dark); }

.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.review-platform {
  font-size: 0.72rem;
  color: var(--text-light);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  font-style: italic;
}

.review-text::before { content: '"'; color: var(--orange); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 2px; }
.review-text::after { content: '"'; color: var(--orange); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-left: 2px; }

.reviews-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 5rem 0;
  background: var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c9.75 0 15.25-1.498 22.833-3.25C31.666 1 38.5 3 50 3s18.334-2 26.667-.75C84.754 3.5 89.753 4.5 100 4V2c-10.247 0-15.246-1-23.333-2.75C68.334-2 61.5 0 50 0S31.666-2 22.833-.75z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E") repeat-x bottom;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a { color: var(--orange); opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .menu-intro { grid-template-columns: 1fr; }
  .menu-visual { aspect-ratio: 16/7; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  nav.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  nav.mobile-open ul {
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
  }

  nav.mobile-open a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .hero-status { display: none; }
  .hero-content { padding: 7rem 0 4rem; }

  .ratings-overview { gap: 1rem; }
  .rating-platform { padding: 1.25rem 1.5rem; min-width: 150px; }
  .rating-score { font-size: 2.5rem; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .menu-tabs { overflow-x: auto; white-space: nowrap; gap: 0; }
  .menu-tab { padding: 0.6rem 1rem; font-size: 0.875rem; }

  .delivery-zones { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-features { gap: 1rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .pizza-grid { grid-template-columns: 1fr; }
  .ratings-overview { flex-direction: column; align-items: center; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
