:root {
  --red: #c8102e;
  --red-dark: #8e0a1e;
  --green: #2e7d32;
  --yellow: #f4b400;
  --cream: #fff8ef;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #ececec;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
  --blue: #0aa0c4;
  --pink: #e54f8c;
  --orange: #f4900c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* MEXICAN DECOR — papel picado + serape */
.papel {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 56px;
  display: block;
  z-index: 4;
  pointer-events: none;
  color: rgba(0,0,0,.3);
  filter: drop-shadow(0 4px 4px rgba(0,0,0,.25));
}
.hero .papel, .footer .papel { color: rgba(255,255,255,.55); }

.serape {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 16px,
    var(--orange) 16px 32px,
    var(--yellow) 32px 48px,
    var(--green) 48px 64px,
    var(--blue) 64px 80px,
    var(--pink) 80px 96px
  );
}

.section-title::after {
  content: "";
  display: block;
  width: 130px; height: 5px;
  border-radius: 4px;
  margin: 18px auto 0;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 13px,
    var(--orange) 13px 26px,
    var(--yellow) 26px 39px,
    var(--green) 39px 52px,
    var(--blue) 52px 65px,
    var(--pink) 65px 78px
  );
  transform-origin: center;
  transition: transform .85s cubic-bezier(.2,.7,.2,1) .15s;
}
.about-grid .section-title::after,
.contact-grid .section-title::after { margin-left: 0; margin-right: auto; transform-origin: left; }
/* underline draws in only when JS reveal is active */
html.anim .section-title::after { transform: scaleX(0); }
html.anim .section-title.in::after { transform: scaleX(1); }

/* NAV */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,239,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.navbar.scrolled {
  background: rgba(255,248,239,.88);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; transition: padding .3s ease; }
.navbar.scrolled .nav-inner { padding-top: 9px; padding-bottom: 9px; }
.logo-mark-img, .logo-text { transition: all .3s ease; }
.navbar.scrolled .logo-mark-img { height: 38px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.35rem; }
.logo-mark { font-size: 1.6rem; }
.logo-mark-img { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 3px rgba(0,0,0,.18)); }
.logo-text em { color: var(--red); font-style: normal; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 1.55rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; transition: color .2s; }
.nav-links a:not(.btn) { position: relative; padding: 4px 0; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a:not(.btn).active { color: var(--red); }
.nav-toggle, .nav-burger { display: none; }

/* a11y */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}
.btn::after {
  content: "";
  position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-22deg);
  transition: left .65s ease;
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn-primary { background: var(--red); color: white; box-shadow: 0 8px 20px rgba(200,16,46,.35); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; border: 2px solid white; }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-small { padding: 10px 20px; font-size: .9rem; background: var(--red); color: white; }
.btn-small:hover { background: var(--red-dark); color: white; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: #161616;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -3%;
  background: url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: 0;
  animation: heroZoom 22s ease-out forwards;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(120deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.40) 55%, rgba(0,0,0,.62) 100%),
    radial-gradient(130% 130% at 50% 35%, transparent 50%, rgba(0,0,0,.6) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.16); }
  to   { transform: scale(1); }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 80px 24px; }
.hero-content > * { opacity: 0; animation: heroIn .95s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-content > .eyebrow  { animation-delay: .25s; }
.hero-content > h1        { animation-delay: .4s; }
.hero-content > .hero-sub { animation-delay: .6s; }
.hero-content > .hero-cta { animation-delay: .78s; }
.hero-content > .hero-meta{ animation-delay: .94s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  width: 26px; height: 42px; margin-left: -13px;
  border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
  opacity: 0; animation: heroIn .9s ease 1.2s forwards;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 2px; background: #fff;
  animation: cueDrop 1.6s ease-in-out infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero-mascot {
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 92%;
  max-height: 760px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
  opacity: 0;
  animation: mascot-float 4s ease-in-out infinite, mascot-enter 1.1s cubic-bezier(.2,.7,.2,1) .5s forwards;
  pointer-events: none;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes mascot-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .85rem; color: var(--yellow); font-weight: 600; margin-bottom: 16px; }
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--yellow); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--yellow); }
.hero-sub { font-size: 1.2rem; margin-bottom: 32px; opacity: .9; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 12px; font-size: .95rem; opacity: .85; flex-wrap: wrap; }

/* STRIP */
.strip { background: var(--red); color: white; padding: 34px 0; position: relative; }
.strip::before, .strip::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 18px,
    var(--green) 18px 36px,
    var(--blue) 36px 54px,
    var(--pink) 54px 72px,
    var(--orange) 72px 90px
  );
}
.strip::before { top: 0; }
.strip::after { bottom: 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.strip-grid h3 { font-size: 1.8rem; margin-bottom: 4px; }
.strip-grid p { font-weight: 500; font-size: .95rem; }

/* SECTIONS */
.section { padding: 100px 0; }
.section-alt { background: white; }
.section-dark { background: var(--ink); color: white; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: 1.5px; text-align: center; margin-bottom: 60px; line-height: 1.1; }
.section-title.light { color: white; }
.light-muted { color: rgba(255,255,255,.7); }

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.menu-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; gap: 12px; }
.menu-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; }
.price { color: var(--red); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.menu-card p { color: var(--muted); font-size: .95rem; }
.menu-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: .9rem; font-style: italic; }

/* TACO TUESDAY HIGHLIGHT */
.taco-tuesday {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.taco-tuesday strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 1px; color: var(--yellow); }
.taco-tuesday span { font-size: .98rem; opacity: .95; }
.taco-tuesday .tt-price { font-weight: 700; color: #fff; }

/* CATEGORIZED MENU */
.menu-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  align-items: start;
}
.menu-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.menu-cat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.menu-cat h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 1px; color: var(--red); line-height: 1; }
.menu-cat h3::after {
  content: ""; display: block; width: 54px; height: 4px; border-radius: 3px; margin-top: 8px;
  background: repeating-linear-gradient(90deg, var(--red) 0 9px, var(--orange) 9px 18px, var(--yellow) 18px 27px, var(--green) 27px 36px, var(--blue) 36px 45px);
}
.menu-cat-time {
  font-size: .72rem; font-weight: 600; color: var(--muted);
  background: var(--cream); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.menu-cat-note { font-size: .85rem; color: var(--muted); font-style: italic; margin: 14px 0 4px; }
.menu-list { list-style: none; margin-top: 12px; }
.menu-row { display: flex; align-items: baseline; gap: 6px; padding: 9px 6px; margin: 0 -6px; border-bottom: 1px dashed var(--border); border-radius: 6px; transition: background .2s; }
.menu-row:hover { background: var(--cream); }
.menu-row:last-child { border-bottom: none; }
.menu-row .mname { font-weight: 500; }
.menu-row .mname small { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; font-style: italic; }
.menu-row .mdots { flex: 1; border-bottom: 2px dotted #d9d9d9; transform: translateY(-5px); min-width: 12px; }
.menu-row .mprice { color: var(--red); font-weight: 700; white-space: nowrap; }

/* GALLERY */
.gallery-intro { text-align: center; max-width: 620px; margin: -40px auto 48px; color: var(--muted); font-size: 1.05rem; }
.gallery-intro strong { color: var(--red); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }
.gallery-cta {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--red);
  font-weight: 600;
}
.gallery-cta:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-intro { margin-top: -24px; }
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.review-stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 3px; }
.review-text { color: #333; font-size: 1.02rem; font-style: italic; flex: 1; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.15rem; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-name { font-weight: 600; }
.review-source { font-size: .8rem; color: var(--muted); }
.reviews-cta { display: block; text-align: center; margin-top: 44px; color: var(--red); font-weight: 600; }
.reviews-cta:hover { text-decoration: underline; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid .section-title { text-align: left; margin-bottom: 24px; }
.about-grid p { margin-bottom: 18px; color: #333; font-size: 1.05rem; }
.about-photo {
  border-radius: var(--radius);
  min-height: 420px;
  background: url('about-taco.jpg') center/cover;
  box-shadow: var(--shadow);
}
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.badge {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.info-block { background: white; padding: 24px; border-radius: var(--radius); margin-bottom: 16px; box-shadow: var(--shadow); }
.info-block h4 { font-size: 1.1rem; margin-bottom: 8px; }
.info-block p { color: var(--muted); }
.info-block a { color: var(--red); font-weight: 600; }
.link { display: inline-block; margin-top: 8px; }
.hours { list-style: none; margin-top: 8px; }
.hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--border); color: #444; }
.hours li:last-child { border: none; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 500px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: 0; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-grid .section-title { text-align: left; margin-bottom: 16px; }
.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.contact-list a { color: var(--yellow); font-weight: 500; }
.contact-form { background: rgba(255,255,255,.05); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8); gap: 6px; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); background: rgba(255,255,255,.12); }
.contact-form textarea { resize: vertical; }

/* FOOTER */
.footer { background: #0d0d0d; color: rgba(255,255,255,.7); padding: 96px 0 28px; position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-mascot { height: 52px; width: auto; }
.footer-logo { font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer-logo em { color: var(--yellow); font-style: normal; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 1.4rem; }
.footer-about p { font-size: .95rem; line-height: 1.7; }
.ig-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 16px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-weight: 600; font-size: .92rem; color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 16px rgba(220,39,67,.35);
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.ig-link:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(220,39,67,.5); }
.ig-icon { width: 20px; height: 20px; flex-shrink: 0; }
.footer-col h4 {
  color: #fff; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 1.5px; margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .95rem; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: .9rem;
}
.small { font-size: .9rem; }
.footer-credit {
  text-align: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  font-style: italic;
  letter-spacing: .5px;
  color: rgba(255,255,255,.4);
}
.footer-credit span {
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--yellow);
}

/* FLOATING BUTTONS */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 10px 24px rgba(200,16,46,.4);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--red-dark); }
.float-call { display: none; }

/* FORM SUCCESS */
.form-success {
  background: rgba(46,125,50,.18);
  border: 1px solid rgba(76,175,80,.45);
  color: #c8e6c9;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .95rem;
  animation: heroIn .5s ease;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 60;
  width: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
  box-shadow: 0 0 8px rgba(0,0,0,.15);
  transition: width .1s linear;
}

/* MENU "POPULAR" TAG */
.mtag {
  display: inline-block;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: #fff; background: var(--orange);
  padding: 2px 8px; border-radius: 999px;
  vertical-align: middle; margin-left: 4px;
  white-space: nowrap;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-46px); }
.reveal-r { transform: translateX(46px); }

/* honor reduced-motion: show everything, no animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-content > *, .hero-mascot, .scroll-cue { opacity: 1 !important; }
  .hero::before { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section-title::after { transform: scaleX(1) !important; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .nav-burger span { width: 26px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: absolute; top: 64px; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 16px;
    border: 1px solid var(--border);
    border-radius: 0 0 0 var(--radius);
    box-shadow: var(--shadow);
    transform: translateX(110%); transition: transform .25s;
  }
  .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { min-height: 300px; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .section { padding: 70px 0; }
  .hero { min-height: 96vh; }
  .hero-content { padding: 48px 24px 0; }
  .hero-mascot {
    display: block;
    height: 40vh;
    max-height: 380px;
    right: -8%;
    bottom: 0;
    opacity: .92;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
  }
  .hero-meta { background: linear-gradient(90deg, rgba(0,0,0,.45), transparent); padding: 8px 12px; border-radius: 8px; width: fit-content; }
  .logo-mark-img { height: 40px; }
  .papel { height: 42px; }
  .section-title::after { width: 100px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .float-call {
    display: flex; align-items: center; gap: 6px;
    position: fixed; left: 22px; bottom: 22px; z-index: 60;
    background: var(--green); color: #fff;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 700; font-size: .95rem;
    box-shadow: 0 10px 24px rgba(46,125,50,.45);
  }
  .to-top { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .hero-mascot { height: 32vh; right: -12%; opacity: .85; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .hero-mascot { opacity: .55; right: 0; }
}
