/* ============================================================
   Pizzería Artesanal v3 — Sole & Forno
   Fresca, animada y apetitosa. Sol + horno de leña.
   ============================================================ */

:root {
  color-scheme: light;

  --sun: #f7b733;
  --sun-soft: #ffe9bd;
  --tomato: #fc4a1a;
  --tomato-hover: #ff6a3d;
  --tomato-deep: #c1350e;
  --basil: #2e9e5b;
  --basil-hover: #37b86b;
  --basil-btn: #1e7a44;
  --cream: #fff6e6;
  --cream-deep: #ffedd0;

  --bg: #fff9f0;
  --bg-alt: #fff1da;
  --surface: #ffffff;
  --surface-2: #fff6e6;
  --border: rgba(120, 80, 20, 0.14);
  --border-strong: rgba(120, 80, 20, 0.26);

  --text: #3d2a1a;
  --text-muted: #7d5f3d;
  --text-soft: #a98a63;

  --shadow: 0 20px 50px rgba(180, 110, 30, 0.16);
  --shadow-sm: 0 8px 22px rgba(180, 110, 30, 0.12);

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --container: 1120px;
  --section-pad: clamp(4rem, 9vw, 6.5rem);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme='dark'] {
  color-scheme: dark;

  --sun: #ffc24b;
  --sun-soft: #4a3a1d;
  --tomato: #ff6a3d;
  --tomato-hover: #ff8459;
  --tomato-deep: #ff7a4d;
  --basil: #37b86b;
  --basil-hover: #45cd7c;
  --basil-btn: #2a9e5f;
  --cream: #f7ead6;
  --cream-deep: #e8d4b2;

  --bg: #191310;
  --bg-alt: #221a15;
  --surface: #2a201a;
  --surface-2: #241b15;
  --border: rgba(247, 234, 214, 0.14);
  --border-strong: rgba(247, 234, 214, 0.26);

  --text: #f7ead6;
  --text-muted: #bca588;
  --text-soft: #98826a;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.6rem 1.1rem;
  background: var(--tomato);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

html[data-theme='dark'] .site-header {
  background: rgba(25, 19, 16, 0.88);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sun), var(--tomato));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(247, 183, 51, 0.35);
}

.nav-logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-logo-text {
  background: linear-gradient(90deg, var(--tomato), var(--sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--sun));
  transition: width 0.3s;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color 0.2s, transform 0.3s;
}

.theme-toggle:hover {
  border-color: var(--sun);
  transform: rotate(20deg);
}

.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme='light'] .theme-toggle .icon-sun { display: block; }
html[data-theme='light'] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Section helpers ---------- */
.section {
  padding: var(--section-pad) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tomato-deep);
  margin-bottom: 1rem;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.section-head h2 em { font-style: italic; }

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(61, 42, 26, 0.9) 0%, rgba(61, 42, 26, 0.55) 55%, rgba(61, 42, 26, 0.25) 100%);
}

html[data-theme='dark'] .hero-media-overlay {
  background: linear-gradient(90deg, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.6) 55%, rgba(20, 14, 10, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 5.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}

.hero-eyebrow svg { width: 18px; height: 18px; animation: spin 14s linear infinite; }

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--sun), var(--tomato));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 52ch;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}

.hero-chip--sun { animation-delay: 0.5s; color: var(--sun); }
.hero-chip--fire { color: var(--tomato); }

.hero-chip svg { width: 16px; height: 16px; }

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

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--tomato), var(--tomato-hover));
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-star { color: var(--sun); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  touch-action: manipulation;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--tomato), var(--sun));
  color: #fff;
  box-shadow: 0 12px 28px rgba(252, 74, 26, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 16px 34px rgba(252, 74, 26, 0.5);
}

.btn--whatsapp {
  background: var(--basil-btn);
  color: #fff;
  box-shadow: 0 12px 28px rgba(46, 158, 91, 0.35);
}

.btn--whatsapp:hover {
  background: var(--basil-hover);
  box-shadow: 0 16px 34px rgba(46, 158, 91, 0.45);
}

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

.btn--outline:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.btn--block { width: 100%; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* ---------- Features ---------- */
.features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  border-color: var(--sun);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg { width: 28px; height: 28px; }
.feature-icon--sun { background: var(--sun-soft); color: var(--sun); }
.feature-icon--fire { background: rgba(252, 74, 26, 0.14); color: var(--tomato); }
.feature-icon--green { background: rgba(46, 158, 91, 0.14); color: var(--basil); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- Menu with sidebar ---------- */
.menu-section {
  background: var(--bg-alt);
  transition: background var(--transition);
}

.menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 92px;
}

.menu-sidebar-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.menu-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--sun-soft);
}

.menu-index {
  display: grid;
  gap: 0.35rem;
}

.menu-index-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.menu-index-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.25s, transform 0.25s;
}

.menu-index-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
}

.menu-index-item:hover {
  background: var(--surface-2);
  color: var(--text);
  transform: translateX(4px);
}

.menu-index-item.is-active {
  background: var(--sun-soft);
  color: var(--text);
}

.menu-index-item.is-active .menu-index-dot {
  background: var(--tomato);
  transform: scale(1.3);
}

.menu-index-item.is-active .menu-index-price {
  color: var(--tomato);
}

.menu-sidebar-cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.75rem;
}

.menu-sidebar-cta p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- Pizza items ---------- */
.menu-list {
  display: grid;
  gap: 1.75rem;
}

.pizza-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  scroll-margin-top: 96px;
}

.pizza-item:hover {
  border-color: var(--sun);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pizza-img {
  position: relative;
  min-height: 100%;
}

.pizza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pizza-item:hover .pizza-img img {
  transform: scale(1.05);
}

.pizza-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .pizza-badge {
  background: rgba(42, 32, 26, 0.92);
}

.pizza-info {
  padding: 1.75rem 1.75rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pizza-info-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: 0.6rem;
}

.pizza-info h3 {
  font-size: 1.45rem;
}

.pizza-price {
  font-weight: 700;
  color: var(--tomato);
  font-size: 1.2rem;
  white-space: nowrap;
}

.pizza-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.pizza-order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--basil);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s, color 0.25s;
}

.pizza-order svg { width: 17px; height: 17px; }

.pizza-order:hover {
  gap: 0.7rem;
  color: var(--basil-hover);
}

/* ---------- Maestro ---------- */
.maestro {
  background: var(--bg);
}

.maestro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.maestro-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.maestro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.maestro-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--sun);
  border-radius: var(--radius-lg);
  transform: translate(14px, 14px);
  z-index: -1;
  opacity: 0.7;
}

.maestro-copy h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1.25rem;
}

.maestro-text {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

.maestro-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.maestro-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.maestro-list svg {
  width: 22px;
  height: 22px;
  color: var(--basil);
  flex-shrink: 0;
}

/* ---------- Process ---------- */
.process {
  background: var(--bg-alt);
  transition: background var(--transition);
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--tomato);
  box-shadow: var(--shadow-sm);
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
}

.process-icon svg { width: 28px; height: 28px; }
.process-icon--sun { background: var(--sun-soft); color: var(--sun); }
.process-icon--green { background: rgba(46, 158, 91, 0.14); color: var(--basil); }
.process-icon--fire { background: rgba(252, 74, 26, 0.14); color: var(--tomato); }
.process-icon--tomato { background: rgba(252, 74, 26, 0.14); color: var(--tomato); }

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- Visit ---------- */
.visit {
  background: var(--bg);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.visit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
}

.visit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--sun-soft);
}

.visit-hours {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.visit-hours li span:last-child {
  color: var(--text);
  font-weight: 600;
}

.visit-hours .is-closed {
  color: var(--tomato) !important;
}

.visit-address {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.visit-contacts {
  display: grid;
  gap: 0.6rem;
}

.visit-contacts a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.visit-contacts a:hover { color: var(--tomato); }
.visit-contacts svg { width: 18px; height: 18px; color: var(--basil); }

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-alt);
  transition: background var(--transition);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] {
  border-color: var(--tomato);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tomato);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg);
}

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

.contact-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.contact-lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-list a:hover {
  color: var(--text);
  border-color: var(--basil);
  transform: translateX(4px);
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--basil);
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(247, 183, 51, 0.22);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--tomato);
  box-shadow: 0 0 0 3px rgba(252, 74, 26, 0.15);
}

.form-group .error-msg {
  display: none;
  color: var(--tomato);
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

.form-group.has-error .error-msg { display: block; }

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.4em;
  text-align: center;
}

.form-feedback.is-success { color: var(--basil); }
.form-feedback.is-error { color: var(--tomato); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  transition: background var(--transition);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-credit a {
  color: var(--tomato-deep);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover { text-decoration: underline; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--basil-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(46, 158, 91, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  touch-action: manipulation;
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 34px rgba(46, 158, 91, 0.5);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
  }

  .menu-sidebar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .menu-sidebar-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    white-space: nowrap;
  }

  .menu-index {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .menu-index-item {
    white-space: nowrap;
    grid-template-columns: 8px 1fr;
  }

  .menu-index-price {
    display: none;
  }

  .menu-sidebar-cta {
    display: none;
  }

  .features-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .maestro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .maestro-media::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 24px 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    padding: 0.45rem 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  .nav-link::after { display: none; }

  .theme-toggle { margin-top: 0.4rem; }

  .pizza-item {
    grid-template-columns: 1fr;
  }

  .pizza-img img {
    aspect-ratio: 16 / 10;
  }

  .pizza-info {
    padding: 0 1.4rem 1.4rem;
  }

  .features-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-scroll { display: none; }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track,
  .hero-eyebrow svg,
  .hero-chip,
  .hero-scroll svg {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
