/* ============================================================
   UNOS MARISCOS O QUE — Coastal Sinaloa neon-market
   Deep-sea teal base · neon aqua · coral heat · lime zest · warm sand
   ============================================================ */

:root {
  --deep: #05292e;
  --deep-2: #07383f;
  --deep-3: #0a4a50;
  --teal: #0e7c74;
  --aqua: #2fe0c5;
  --coral: #ff5348;
  --coral-dark: #e03d33;
  --lime: #c6f24e;
  --sand: #f8f1e4;
  --cream: #fffaf0;
  --ink: #142a2d;
  --ink-soft: #3d5457;
  --white: #ffffff;

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-accent: "Shrikhand", cursive;
  --font-body: "Schibsted Grotesk", "Segoe UI", sans-serif;

  --radius: 1.25rem;
  --radius-lg: 2rem;
  --shadow-pop: 0.5rem 0.5rem 0 rgba(20, 42, 45, 0.16);
  --shadow-deep: 0 24px 60px -20px rgba(5, 41, 46, 0.45);
  --wrap: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 800;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- kickers & accents ---------- */
.kicker {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--coral);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 0.5rem;
  transform: rotate(-2deg);
  transform-origin: left bottom;
}
.on-dark .kicker { color: var(--lime); text-shadow: 0 0 22px rgba(198, 242, 78, 0.45); }

.section-title { font-size: clamp(2rem, 5vw, 3.25rem); }
.section-sub { color: var(--ink-soft); max-width: 38rem; margin: -0.25rem 0 2.25rem; }
.on-dark .section-sub { color: rgba(248, 241, 228, 0.75); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--deep);
  color: var(--aqua);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid rgba(47, 224, 197, 0.25);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 41, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 224, 197, 0.18);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand img { height: 3.1rem; width: auto; filter: drop-shadow(0 0 14px rgba(47, 224, 197, 0.35)); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.brand-name small { display: block; color: var(--aqua); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--lime); border-bottom-color: var(--lime); }
.lang-switch {
  border: 1.5px solid rgba(47, 224, 197, 0.5) !important;
  border-radius: 999px;
  padding: 0.3rem 0.85rem !important;
  color: var(--aqua) !important;
  font-size: 0.85rem !important;
}
.lang-switch:hover { background: rgba(47, 224, 197, 0.12); border-bottom-color: transparent !important; }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) rotate(-0.5deg); }
.btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 10px 30px -8px rgba(255, 83, 72, 0.55); }
.btn-coral:hover { background: var(--coral-dark); color: var(--white); }
.btn-outline { border-color: var(--aqua); color: var(--aqua); background: transparent; }
.btn-outline:hover { background: rgba(47, 224, 197, 0.12); color: var(--aqua); }
.btn-lime { background: var(--lime); color: var(--deep); box-shadow: 0 10px 30px -8px rgba(198, 242, 78, 0.5); }
.btn-lime:hover { color: var(--deep); }
.btn-sm { font-size: 0.85rem; padding: 0.55rem 1.2rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.4rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--aqua); border-radius: 2px; transition: 0.2s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--deep);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(14, 124, 116, 0.55), transparent 60%),
    radial-gradient(40rem 26rem at -10% 110%, rgba(255, 83, 72, 0.28), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4.5rem 5.5rem;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--aqua); text-shadow: 0 0 30px rgba(47, 224, 197, 0.5); }
.hero-sub { font-size: 1.15rem; color: rgba(248, 241, 228, 0.85); max-width: 34rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem; }
.badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1.5px solid rgba(198, 242, 78, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  transform: rotate(2deg);
  border: 4px solid rgba(47, 224, 197, 0.35);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: -1.2rem auto auto -1.2rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-dark));
  box-shadow: 0 0 40px rgba(255, 83, 72, 0.6);
  z-index: -1;
}

/* ---------- wave divider ---------- */
.wave { display: block; width: 100%; height: 4rem; }
.wave-flip { transform: scaleY(-1); }

/* Section separator that carries the section's own background (color +
   pattern overlay) and is clipped to a wave along its bottom edge, so the
   colored band flows INTO the wave instead of ending in a straight line. */
.wave-sep {
  height: 4rem;
  background: var(--deep);
  position: relative;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 32C240 0 480 64 720 40 960 16 1200 56 1440 32V0H0Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 32C240 0 480 64 720 40 960 16 1200 56 1440 32V0H0Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* ---------- sections ---------- */
.section { padding-block: 4.5rem; }
.section-dark { background: var(--deep); color: var(--cream); position: relative; }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-deep2 { background: var(--deep-2); }
.section-cream { background: var(--cream); }

/* fish-scale texture on dark sections */
.scales {
  background-image: radial-gradient(circle at 50% 120%, rgba(47, 224, 197, 0.08) 20%, transparent 21%);
  background-size: 2.6rem 1.8rem;
}

/* ---------- menu cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1.6rem; }
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(20, 42, 45, 0.08);
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-4px) rotate(-0.4deg); box-shadow: 0.7rem 0.7rem 0 rgba(255, 83, 72, 0.25); }
.dish-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .thumb img { transform: scale(1.06); }
.price-tag {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(224, 61, 51, 0.5);
  transform: rotate(3deg);
}
.dish-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.dish-card h3 { font-size: 1.25rem; margin: 0; }
.dish-card h3 a { color: var(--ink); text-decoration: none; }
.dish-card h3 a:hover { color: var(--coral); }
.dish-card p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.dish-card .more { font-weight: 700; font-size: 0.88rem; color: var(--teal); text-decoration: none; }
.dish-card .more:hover { color: var(--coral); }

/* ---------- category blocks ---------- */
.cat-header { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin: 3.2rem 0 1.4rem; }
.cat-header:first-of-type { margin-top: 0; }
.cat-header h2 { margin: 0; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.cat-header .count {
  font-family: var(--font-display);
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.15rem 0.7rem;
}
.cat-blurb { color: var(--ink-soft); margin: 0 0 1.5rem; max-width: 40rem; }

.cat-nav { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.5rem; }
.cat-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--deep);
  background: var(--white);
  border: 2px solid var(--deep);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  transition: 0.15s;
}
.cat-nav a:hover { background: var(--lime); transform: translateY(-2px); }

/* ---------- dish detail page ---------- */
.dish-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.dish-hero .photo img {
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-deep);
  transform: rotate(-1.5deg);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.dish-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.dish-price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--coral);
  padding: 0.35rem 1.3rem;
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-pop);
  margin-bottom: 1.2rem;
}
.dish-cat-link { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- story / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split .photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  transform: rotate(-2deg);
  border: 4px solid var(--white);
}
blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--teal);
  border-left: 5px solid var(--coral);
  margin: 0 0 1.4rem;
  padding: 0.2rem 0 0.2rem 1.2rem;
}
.on-dark blockquote { color: var(--aqua); }
.signature { font-family: var(--font-accent); color: var(--coral); font-size: 1.25rem; }

/* ---------- feature tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem; }
.tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(47, 224, 197, 0.25);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.tile h3 { color: var(--lime); font-size: 1.2rem; }
.tile p { color: rgba(248, 241, 228, 0.8); margin: 0; font-size: 0.95rem; }
.tile .when { color: var(--aqua); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; display: block; margin-bottom: 0.6rem; }

.tile-light {
  background: var(--white);
  border: 2px solid rgba(20, 42, 45, 0.08);
  box-shadow: var(--shadow-pop);
}
.tile-light h3 { color: var(--deep); }
.tile-light p { color: var(--ink-soft); }

/* ---------- event cards ---------- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); gap: 1.6rem; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(20, 42, 45, 0.08);
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
}
.event-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.event-card .event-when {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.1rem 1.2rem 0.3rem;
}
.event-card .event-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 1.2rem 0.5rem;
  color: var(--ink);
}
.event-card .event-body { margin: 0 1.2rem 1.3rem; color: var(--ink-soft); font-size: 0.95rem; flex: 1; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 46rem; }
.faq-list details {
  background: var(--white);
  border: 2px solid rgba(20, 42, 45, 0.1);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.05rem 1.3rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--coral);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details[open] summary { color: var(--teal); }
.faq-list details p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.5rem; }
.review {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(198, 242, 78, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review .stars { color: var(--lime); letter-spacing: 0.2em; margin-bottom: 0.6rem; font-size: 0.95rem; }
.review p { margin: 0 0 0.8rem; color: rgba(248, 241, 228, 0.88); font-size: 0.95rem; }
.review cite { color: var(--aqua); font-style: normal; font-weight: 700; font-size: 0.88rem; }

/* ---------- contact ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours-table td { padding: 0.35rem 0; border-bottom: 1px dashed rgba(20, 42, 45, 0.15); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table .closed td { color: var(--coral); font-weight: 700; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); border: 4px solid var(--white); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 5rem 0; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-band p { max-width: 34rem; margin: 0 auto 2rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: rgba(248, 241, 228, 0.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: var(--lime); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { color: var(--sand); text-decoration: none; }
.site-footer a:hover { color: var(--aqua); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-brand img { height: 4.2rem; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.92rem; max-width: 20rem; }
.footer-bottom {
  border-top: 1px solid rgba(47, 224, 197, 0.18);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(248, 241, 228, 0.55);
}
.footer-bottom a { color: rgba(248, 241, 228, 0.7); margin-left: 1rem; }

/* ---------- article pages ---------- */
.article { max-width: 46rem; }
.article p { margin-bottom: 1.3rem; }
.article h2 { margin-top: 2.4rem; font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.page-hero { background: var(--deep); color: var(--cream); padding: 3.6rem 0 4.2rem; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50rem 24rem at 90% -20%, rgba(14, 124, 116, 0.5), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5.5vw, 3.6rem); max-width: 46rem; margin-bottom: 0.4rem; }
.page-hero .lede { color: rgba(248, 241, 228, 0.82); font-size: 1.12rem; max-width: 40rem; margin: 0; }

/* ---------- animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-grid > * { animation: rise 0.7s ease both; }
.hero-grid > *:nth-child(2) { animation-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 60rem) {
  .hero-grid, .split, .dish-hero { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1rem;
    border-bottom: 2px solid rgba(47, 224, 197, 0.3);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-photo { max-width: 26rem; }

  /* slimmer header */
  .topbar { font-size: 0.63rem; padding: 0.3rem 0.5rem; letter-spacing: 0.01em; }
  .site-header .wrap { gap: 0.5rem; padding-top: 0.4rem; padding-bottom: 0.4rem; }
  .brand { gap: 0.45rem; }
  .brand img { height: 2rem; }
  .brand-name { font-size: 0.84rem; white-space: nowrap; }
  .brand-name small { font-size: 0.56rem; letter-spacing: 0.09em; }
  .site-header .btn-sm { font-size: 0.72rem; padding: 0.4rem 0.75rem; white-space: nowrap; }
  .nav-toggle { padding: 0.25rem; }
  .nav-toggle span { width: 21px; height: 2.5px; margin: 4px 0; }
}
@media (max-width: 40rem) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding-block: 3.2rem; }

  /* featured dishes become a swipeable slider */
  .card-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(76%, 19rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.6rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .card-slider::-webkit-scrollbar { display: none; }
  .card-slider > .dish-card { scroll-snap-align: center; }
}
@media (max-width: 21.5rem) {
  .brand-name { font-size: 0.76rem; }
  .brand-name small { display: none; }
  .brand img { height: 1.8rem; }
  .site-header .btn-sm { font-size: 0.66rem; padding: 0.35rem 0.6rem; }
}
