/* ============================================================
   Jeny's Tacos — vibrant fiesta
   Marigold · rosa mexicano pink · talavera teal · warm cream · cocoa ink
   Fonts: Shrikhand (display) + Caveat (hand accent) + Karla (body)
   Signature motifs: papel-picado pennant banner (SVG data-URI),
   marigold sun roundel, zigzag serape divider
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Caveat:wght@600;700&family=Karla:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --cream: #fff6e8;
  --cream-deep: #fdecd2;
  --panel: #fffdf8;
  --line: #f0dcbc;
  --marigold: #f4a10c;
  --marigold-deep: #d18406;
  --pink: #d6336c;
  --pink-deep: #ad2258;
  --teal: #0f8b8d;
  --teal-deep: #0a6668;
  --teal-soft: #ddf0ee;
  --ink: #3a2230;
  --muted: #86685f;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(58, 34, 48, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
}

img { max-width: 100%; display: block; }
::selection { background: var(--pink); color: #fff; }

h1, h2, h3 { font-family: 'Shrikhand', Georgia, serif; font-weight: 400; line-height: 1.15; letter-spacing: 0.01em; }
.hand { font-family: 'Caveat', cursive; font-weight: 700; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.4rem; }
a { color: var(--teal-deep); }

/* ---------- papel-picado pennant banner ---------- */
.picado {
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='168' height='26' viewBox='0 0 168 26'%3E%3Cpath d='M0 0h36l-4 10 4 10-14 6-14-6 4-10-4-10z' fill='%23d6336c'/%3E%3Cpath d='M44 0h36l-4 10 4 10-14 6-14-6 4-10-4-10z' fill='%23f4a10c'/%3E%3Cpath d='M88 0h36l-4 10 4 10-14 6-14-6 4-10-4-10z' fill='%230f8b8d'/%3E%3Cpath d='M132 0h36l-4 10 4 10-14 6-14-6 4-10-4-10z' fill='%23e8c33d'/%3E%3Ccircle cx='18' cy='9' r='3.4' fill='%23fff6e8'/%3E%3Ccircle cx='62' cy='9' r='3.4' fill='%23fff6e8'/%3E%3Ccircle cx='106' cy='9' r='3.4' fill='%23fff6e8'/%3E%3Ccircle cx='150' cy='9' r='3.4' fill='%23fff6e8'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 168px 26px;
}

/* ---------- serape zigzag divider (heading underline) ---------- */
.zig {
  height: 8px; border-radius: 4px; margin: 0.4rem 0 0;
  background: repeating-linear-gradient(90deg,
    var(--pink) 0 14px, var(--marigold) 14px 28px, var(--teal) 28px 42px);
}

/* ---------- topbar & header ---------- */
.topbar {
  background: var(--teal);
  color: #eafaf8;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.45rem 1rem;
}
.topbar strong { color: #ffd98a; }
.topbar a { color: #ffd98a; font-weight: 800; text-decoration: none; }

header.site {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 14px rgba(58,34,48,0.07);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.65rem 1.4rem; max-width: 1180px; margin: 0 auto; flex-wrap: wrap;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 50% 42%, #ffd98a 0 34%, var(--marigold) 35% 100%);
  border: 3px solid var(--pink);
  display: grid; place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 0 0 3px #ffe9c2;
}
.brand-name {
  font-family: 'Shrikhand', Georgia, serif;
  font-size: 1.55rem; color: var(--pink); line-height: 1;
}
.brand-tag {
  display: block; font-family: 'Karla', sans-serif;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.25rem;
}
nav.main { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
nav.main a {
  text-decoration: none; color: var(--ink); font-weight: 800; font-size: 0.97rem;
  padding: 0.45rem 0.95rem; border-radius: 999px; transition: background 0.15s, color 0.15s;
}
nav.main a:hover { background: var(--teal-soft); color: var(--teal-deep); }
nav.main a.active { background: var(--teal); color: #fff; }
nav.main a.cta { background: var(--pink); color: #fff; margin-left: 0.35rem; }
nav.main a.cta:hover { background: var(--pink-deep); color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 76vh;
  display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(40,18,30,0.32) 0%, rgba(40,18,30,0.08) 40%, rgba(34,14,25,0.86) 100%);
}
.hero-inner { padding-top: 5.5rem; padding-bottom: 3.2rem; width: 100%; }
.hero .kicker {
  display: inline-block; background: var(--marigold);
  color: var(--ink); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 1.05rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  max-width: 17ch; text-shadow: 0 3px 22px rgba(0,0,0,0.5);
}
.hero h1 .hand { color: #ffd98a; font-size: 1.2em; }
.hero p.lede {
  max-width: 54ch; margin: 1.1rem 0 1.8rem;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  color: #ffeeda; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero .btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero--page { min-height: 44vh; }
.hero--page .hero-inner { padding-top: 4rem; padding-bottom: 2.4rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  font-family: 'Karla', sans-serif; font-size: 1rem;
  padding: 0.8rem 1.7rem; border-radius: 999px;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-deep); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); }
.btn-gold { background: var(--marigold); color: var(--ink); }
.btn-gold:hover { background: var(--marigold-deep); }
.btn-cream { background: #fffdf8; color: var(--pink-deep); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---------- info strip ---------- */
.info-strip { background: var(--ink); color: #f6e8dc; }
.info-strip .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.5rem 2rem; padding: 1.1rem 1.4rem;
}
.info-strip .cell { display: flex; align-items: center; gap: 0.75rem; font-size: 0.96rem; }
.info-strip .cell strong { display: block; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--marigold); }
.info-strip a { color: #f6e8dc; text-decoration: none; }
.info-strip a:hover { color: #fff; text-decoration: underline; }
.info-ico { font-size: 1.5rem; line-height: 1; }

/* ---------- sections ---------- */
section.block { padding: 4.4rem 0; }
section.block--deep { background: var(--cream-deep); }
section.block--teal { background: var(--teal-soft); }
.eyebrow {
  font-family: 'Caveat', cursive; font-size: 1.65rem;
  color: var(--pink); margin-bottom: 0.1rem; line-height: 1;
}
.block h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.6rem; color: var(--teal-deep); }
.block h2 .hand { color: var(--pink); font-size: 1.15em; }
.block .sub { color: var(--muted); max-width: 62ch; margin-bottom: 2.2rem; font-size: 1.07rem; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--panel); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid var(--line);
  border-top: 5px solid var(--marigold);
}
.card:nth-child(2n) { border-top-color: var(--pink); }
.card:nth-child(3n) { border-top-color: var(--teal); }
.card:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: 0 16px 40px rgba(58,34,48,0.2); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card .pad { padding: 1.2rem 1.3rem 1.4rem; flex: 1; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; color: var(--pink-deep); }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split-img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 8px solid #fff; outline: 1px solid var(--line); transform: rotate(-1deg);
}
.split.rev .split-img { transform: rotate(1deg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 840px) { .split, .split.rev { grid-template-columns: 1fr; gap: 1.8rem; } }

ul.checks { list-style: none; margin-top: 1rem; }
ul.checks li { padding-left: 2rem; position: relative; margin-bottom: 0.65rem; }
ul.checks li::before { content: "🌮"; position: absolute; left: 0; top: 0.05rem; font-size: 0.95rem; }

/* ---------- reviews ---------- */
.review {
  background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem 1.7rem 1.5rem; position: relative; border: 1px solid var(--line);
  border-bottom: 4px solid var(--marigold);
}
.review:nth-child(2n) { border-bottom-color: var(--pink); }
.review:nth-child(3n) { border-bottom-color: var(--teal); }
.review::before {
  content: "\201C"; font-family: 'Shrikhand', serif; font-size: 3.2rem;
  color: var(--cream-deep); position: absolute; top: 0.5rem; left: 1.1rem; line-height: 1;
}
.review p { position: relative; font-size: 1rem; margin-bottom: 1rem; padding-top: 0.9rem; }
.review .who { font-weight: 800; color: var(--teal-deep); font-size: 0.92rem; }
.review .stars { color: var(--marigold-deep); letter-spacing: 0.12em; margin-bottom: 0.2rem; }

/* ---------- menu board ---------- */
.board {
  background: var(--panel);
  border: 3px solid var(--teal);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}
.board-section { margin-bottom: 2.6rem; }
.board-section:last-child { margin-bottom: 0; }
.board-section > h3 {
  font-size: 1.4rem; color: var(--pink-deep);
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.3rem;
}
.board-section > h3::after {
  content: ""; flex: 1; height: 7px; border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--marigold) 0 12px, transparent 12px 22px);
}
.board-section .note { color: var(--muted); font-size: 0.95rem; font-style: italic; margin-bottom: 1.1rem; }
.items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 2.6rem; }
@media (max-width: 760px) { .items { grid-template-columns: 1fr; } }
.it { padding: 0.6rem 0.2rem; border-bottom: 2px dotted var(--line); display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.it .n { font-weight: 800; font-size: 1.02rem; }
.it .d { color: var(--muted); font-size: 0.92rem; line-height: 1.5; font-weight: 400; display: block; }
.it .p { font-weight: 800; color: var(--teal-deep); white-space: nowrap; }
.pill {
  display: inline-block; background: var(--pink); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; padding: 0.1rem 0.6rem; margin-left: 0.45rem; vertical-align: 2px;
}
.pill--teal { background: var(--teal); }
.pill--gold { background: var(--marigold); color: var(--ink); }

/* ---------- salsa jar spotlight ---------- */
.salsa-spot {
  background: linear-gradient(135deg, #1d6b46 0%, #2a8b5c 100%);
  color: #f2fbee; border-radius: 22px; box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
  overflow: hidden; position: relative;
}
.salsa-spot h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: #fff; margin-bottom: 0.6rem; }
.salsa-spot .hand { color: #ffd98a; }
.salsa-spot p { color: #e3f5da; margin-bottom: 1.2rem; }
.salsa-spot .jars { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.salsa-spot .jar {
  background: rgba(255,255,255,0.13); border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px; padding: 0.7rem 1.1rem; text-align: center; min-width: 92px;
}
.salsa-spot .jar .sz { font-weight: 800; font-size: 1.05rem; }
.salsa-spot .jar .pr { font-family: 'Shrikhand', serif; font-size: 1.25rem; color: #ffd98a; }
.salsa-img { border-radius: 14px; overflow: hidden; border: 6px solid rgba(255,255,255,0.25); }
@media (max-width: 760px) { .salsa-spot { grid-template-columns: 1fr; } }

/* ---------- style-choice explainer ---------- */
.style-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 720px) { .style-choice { grid-template-columns: 1fr; } }
.style-card {
  background: var(--panel); border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 1.7rem 1.6rem; position: relative; overflow: hidden;
}
.style-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.style-card.norte::before { background: var(--marigold); }
.style-card.tradicional::before { background: var(--teal); }
.style-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--ink); }
.style-card .tagline { font-family: 'Caveat', cursive; font-size: 1.3rem; color: var(--pink); line-height: 1.1; margin-bottom: 0.5rem; }

/* ---------- banner ---------- */
.banner {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
  border-radius: var(--radius);
}
.banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(34,14,25,0.88) 0%, rgba(34,14,25,0.5) 60%, rgba(34,14,25,0.22) 100%);
}
.banner .pad { padding: 3.2rem 2.6rem; max-width: 62%; }
.banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.7rem; }
.banner p { color: #ffeeda; margin-bottom: 1.5rem; }
@media (max-width: 720px) { .banner .pad { max-width: 100%; padding: 2.4rem 1.6rem; } }

/* ---------- hours & visit ---------- */
table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 0.7rem 0.4rem; border-bottom: 2px dotted var(--line); font-size: 1.02rem; }
table.hours td:last-child { text-align: right; font-weight: 800; }
table.hours tr.today td { color: var(--pink-deep); font-weight: 800; }
table.hours tr.closed td { color: var(--muted); }

.map-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 8px solid #fff; outline: 1px solid var(--line);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

.loc-card {
  background: var(--panel); border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 1.8rem 1.7rem;
}
.loc-card h3 { color: var(--teal-deep); font-size: 1.25rem; margin-bottom: 0.4rem; }

.tip {
  background: var(--teal-soft); border-left: 5px solid var(--teal);
  border-radius: 0 12px 12px 0; padding: 1rem 1.3rem;
  font-size: 0.97rem; margin: 1.6rem 0;
}
.tip strong { color: var(--teal-deep); }

/* ---------- open-now badge ---------- */
.open-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 0.9rem; border-radius: 999px;
  padding: 0.35rem 1rem; margin-top: 0.9rem;
}
.open-badge .dot { width: 10px; height: 10px; border-radius: 50%; }
.open-badge.is-open { background: rgba(37, 128, 66, 0.14); color: #1d6b46; }
.open-badge.is-open .dot { background: #2a9d5c; box-shadow: 0 0 0 4px rgba(42,157,92,0.25); }
.open-badge.is-closed { background: rgba(173, 34, 88, 0.1); color: var(--pink-deep); }
.open-badge.is-closed .dot { background: var(--pink); }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #f6e8dc; }
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem; padding: 3rem 0 2rem;
}
@media (max-width: 860px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h4 { font-family: 'Shrikhand', serif; color: #fff; font-size: 1rem; margin-bottom: 0.8rem; }
footer.site a { color: #f6e8dc; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.45rem; font-size: 0.95rem; }
footer.site .brand-foot { font-family: 'Shrikhand', serif; font-size: 1.5rem; color: var(--marigold); }
footer.site p.small { font-size: 0.9rem; color: #d9c2ae; margin-top: 0.6rem; }
.footnote {
  border-top: 1px solid rgba(246,232,220,0.25);
  padding: 1.2rem 0 1.6rem; font-size: 0.85rem; color: #c2a58f; text-align: center;
}
.footnote strong { color: #f6e8dc; }
.footnote a { color: #ffd98a; }

@media (max-width: 640px) {
  .hero { min-height: 62vh; }
  nav.main { justify-content: center; width: 100%; }
  .nav-row { justify-content: center; }
}
