/* EL ENROLLAO FOOD TRUCK — Diseño mejorado */
:root {
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --red: #EF4444;
  --orange: #F97316;
  --cream: #FFF8F0;
  --cream-dark: #FDF0DE;
  --dark: #1A0F05;
  --dark-card: #231508;
  --brown: #7C3D12;
  --text: #2D1A0A;
  --muted: #7A6552;
  --border: #E8DDD0;
  --white: #ffffff;
  --green: #22C55E;

  --gradient: linear-gradient(135deg, var(--amber) 0%, var(--red) 100%);
  --gradient-soft: linear-gradient(135deg, #FEF3C7 0%, #FEE2E2 100%);

  --shadow-sm: 0 2px 8px rgba(122,69,19,.12);
  --shadow-md: 0 8px 24px rgba(122,69,19,.18);
  --shadow-lg: 0 20px 48px rgba(122,69,19,.22);
  --shadow-glow: 0 0 40px rgba(245,158,11,.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.025em; line-height: 1.1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,240,.9);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(232,221,208,.6);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px; max-width: 1120px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo svg { flex: 0 0 36px; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-primary { font-family: var(--font-display); font-weight: 800; font-size: .95rem; color: var(--brown); }
.brand-sub { font-size: .68rem; font-weight: 600; color: var(--orange); letter-spacing: .06em; text-transform: uppercase; }

.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--gradient); color: #fff !important;
  border-radius: 999px; padding: 8px 18px;
  font-size: .84rem; font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-md) !important; }

/* Hamburger */
.nav-toggle {
  background: none; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 10px; display: flex; flex-direction: column;
  gap: 4px; width: 42px; height: 38px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
  border-top: 0px solid transparent;
}
.nav-mobile.open {
  max-height: 500px;
  border-top: 1px solid var(--border);
}
.nav-mobile-inner { padding: 8px 20px 20px; }
.nav-mobile a {
  display: block; padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile-cta {
  display: inline-block !important;
  border: none !important;
  margin-top: 16px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 14px 32px;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  cursor: pointer; border: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: var(--shadow-lg), var(--shadow-glow); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-ghost {
  background: transparent; color: var(--brown);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-dark); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,15,5,.55) 0%, rgba(26,15,5,.82) 60%, rgba(26,15,5,.95) 100%);
}
.hero-noise {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; padding: 100px 20px 80px; max-width: 860px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.35);
  backdrop-filter: blur(8px);
  color: var(--amber); border-radius: 999px;
  padding: 6px 16px; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 800;
  color: var(--white); line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(255,248,240,.78);
  max-width: 540px; margin: 0 auto 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 52px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero-stat { padding: 18px 28px; text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: .72rem; color: rgba(255,248,240,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,248,240,.5); width: 40px; height: 40px;
  display: grid; place-items: center;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,248,240,.9); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.eyebrow-light { color: var(--amber); }
.section-sub { color: var(--muted); font-size: .95rem; margin-top: 12px; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--brown); margin-top: 4px; }
.block { padding: 88px 0; }
.dark-section { background: var(--dark); }
.dark-section .section-head h2, .light-heading { color: var(--white); }
.warm-section { background: var(--cream-dark); }

/* ===== NOSOTROS ===== */
.about-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -18px; right: 24px;
  background: var(--gradient); color: #fff;
  border-radius: var(--radius-md); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.badge-float-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.badge-float-text { font-size: .72rem; opacity: .85; margin-top: 2px; }
.about-body { padding-top: 16px; }
.about-body h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--brown); margin-bottom: 20px; }
.about-body p { color: var(--muted); margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  background: var(--gradient-soft); border-radius: var(--radius-sm);
  display: grid; place-items: center; font-size: 1.2rem;
}
.feature-list strong { display: block; font-weight: 700; color: var(--text); font-size: .95rem; }
.feature-list span { font-size: .85rem; color: var(--muted); }

/* ===== MENU TABS ===== */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.tab {
  padding: 10px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: .84rem;
  background: rgba(255,255,255,.07); color: rgba(255,248,240,.6);
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition);
}
.tab:hover { background: rgba(255,255,255,.12); color: var(--white); }
.tab.active { background: var(--gradient); color: var(--white); border-color: transparent; box-shadow: var(--shadow-md); }

.menu-panels { position: relative; }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-panel-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: start;
}
.menu-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.menu-photo img { width: 100%; height: 300px; object-fit: cover; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item.featured { position: relative; }
.mi-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 4px; }
.mi-name { font-weight: 700; color: var(--white); font-size: .95rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mi-badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
  background: var(--gradient); color: #fff;
}
.mi-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; color: var(--amber); white-space: nowrap;
}
.menu-item p { font-size: .85rem; color: rgba(255,248,240,.5); }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,15,5,.8) 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display); font-weight: 700;
  color: #fff; font-size: .9rem;
}

/* ===== OPINIONES ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
.review {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.review-featured { border-color: var(--amber); box-shadow: var(--shadow-lg), 0 0 0 2px rgba(245,158,11,.15); }
.review-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.review p { font-size: .92rem; color: var(--muted); line-height: 1.65; flex: 1; }
.review footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: 1rem; flex-shrink: 0;
}
.review footer strong { display: block; font-weight: 700; font-size: .9rem; color: var(--text); }
.review footer span { font-size: .78rem; color: var(--muted); }
.reviews-cta { text-align: center; }

/* ===== EVENTOS ===== */
.events-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: start; margin-bottom: 64px;
}
.event-types { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.event-type {
  background: var(--cream-dark); border-radius: var(--radius-md);
  padding: 20px; text-align: center;
  border: 2px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.event-type:hover { border-color: var(--amber); transform: translateY(-3px); }
.event-type span { font-size: 2rem; }
.event-type p { font-weight: 700; color: var(--brown); margin-top: 8px; font-size: .9rem; }
.event-lead { color: var(--muted); margin-bottom: 20px; font-size: .97rem; line-height: 1.7; }
.checklist { list-style: none; margin-bottom: 28px; }
.checklist li {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.event-cta { margin-top: 4px; }

.steps-strip {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: center;
  background: var(--cream-dark); border-radius: var(--radius-xl);
  padding: 36px; border: 1px solid var(--border);
}
.step { text-align: center; }
.step-num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; color: var(--brown); margin-bottom: 6px; }
.step p { font-size: .85rem; color: var(--muted); }
.step-arrow { display: none; font-size: 1.5rem; color: var(--amber); text-align: center; }

/* ===== CONTACTO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.info-block { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; padding-top: 2px; }
.info-block strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.info-block p { font-size: .9rem; color: rgba(255,248,240,.6); }
.info-block a { color: var(--amber); font-weight: 600; }
.info-block a:hover { color: var(--white); }
.contact-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.map {
  width: 100%; height: 240px; border: 0;
  border-radius: var(--radius-lg);
  filter: brightness(.85) saturate(.9);
}

.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-form h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.form-sub { font-size: .85rem; color: rgba(255,248,240,.5); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .83rem; font-weight: 600; color: rgba(255,248,240,.7); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font: inherit; font-size: .92rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,248,240,.3); }
.field input:focus, .field textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(245,158,11,.2);
}

/* ===== FOOTER ===== */
.site-footer { background: #0F0802; padding: 48px 20px; }
.footer-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 32px;
}
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-brand p { font-size: .82rem; color: rgba(255,248,240,.5); margin-top: 2px; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; margin-bottom: 32px;
}
.footer-links a { font-size: .85rem; font-weight: 600; color: rgba(255,248,240,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: .75rem; color: rgba(255,248,240,.3); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: 999px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.55); }
.wa-float svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
.wa-label { font-family: var(--font-display); font-weight: 700; font-size: .82rem; white-space: nowrap; }

/* ===== ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.is-visible { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-featured { grid-column: span 2; }
  .menu-panel-inner { grid-template-columns: 1fr 1fr; }
  .menu-photo img { height: 420px; }
  .steps-strip { grid-template-columns: 1fr auto 1fr auto 1fr; }
  .step-arrow { display: block; }
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img img { height: 520px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid .review-featured { grid-column: auto; }
  .nav-mobile-cta { display: block; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .menu-panel-inner { grid-template-columns: 420px 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .hero img, .gallery-item img, .btn, .wa-float, .hero-scroll { transition: none !important; animation: none !important; }
  .badge-dot { animation: none; }
}
