/* kulishi sushi — concepto privado
   Arquitectura: mostrador nocturno de sushi. Fondo carbón, tipografía condensada,
   tablón de carta tipo ticket, acentos rojo lacado. Dark-first, food-first. */

:root {
  --bg: #0d1117;
  --bg-raise: #141a22;
  --bg-board: #10151c;
  --line: #26303c;
  --ink: #e8ecef;
  --ink-dim: #9aa7b4;
  --ink-faint: #6b7885;
  --accent: #d64545;
  --accent-deep: #a83232;
  --gold: #c9a227;
  --mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;
  --sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --cond: "Arial Narrow", "Helvetica Neue Condensed", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lockup { display: flex; align-items: baseline; gap: 10px; color: var(--ink); }
.lockup:hover { text-decoration: none; }
.lockup-mark {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); align-self: center;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.18);
}
.lockup-text {
  font-family: var(--cond);
  font-size: 22px; letter-spacing: 0.06em; text-transform: lowercase;
}
.lockup-text strong { color: var(--accent); font-weight: 700; }
.lockup-sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  color: var(--ink-faint); align-self: center;
}
.topnav { display: flex; gap: 22px; }
.topnav a {
  color: var(--ink-dim); font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; font-family: var(--cond);
}
.topnav a:hover { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--accent); }

.banner {
  background: var(--accent-deep);
  color: #fff; text-align: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  padding: 6px 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.banner-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; opacity: 0.9;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- hero ---------- */

.hero { border-bottom: 1px solid var(--line); }
.hero-grid {
  max-width: 1080px; margin: 0 auto; padding: 64px 24px 48px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--accent); margin-bottom: 18px;
}
.kicker-light { color: var(--gold); }
.hero h1 {
  font-family: var(--cond);
  font-size: clamp(38px, 5.2vw, 58px); line-height: 1.04;
  letter-spacing: 0.01em; margin-bottom: 20px;
}
.lede { color: var(--ink-dim); font-size: 17px; max-width: 46ch; margin-bottom: 16px; }
.note {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--ink-faint);
  border-left: 2px solid var(--gold); padding-left: 12px; margin-bottom: 26px;
  max-width: 52ch;
}
.note-dot { min-width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-family: var(--cond); font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 13px 22px;
  border: 1px solid transparent; cursor: pointer;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-deep); text-decoration: none; }
.btn-ghost { border-color: var(--line); color: var(--ink-faint); }
.btn-held { cursor: not-allowed; background: transparent; }

.hero-photo { position: relative; }
.hero-photo img {
  border: 1px solid var(--line); border-radius: 4px;
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.hero-photo::before {
  content: "SUSHI · TJ";
  position: absolute; top: 14px; left: -10px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--gold); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; padding: 5px 10px;
}
.hero-photo figcaption {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 10px; font-size: 11.5px; color: var(--ink-faint);
}
.hero-photo figcaption a { color: var(--ink-dim); text-decoration: underline; }

.hero-strip {
  border-top: 1px solid var(--line);
  background: var(--bg-board);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-strip > div {
  padding: 18px 24px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-strip > div:last-child { border-right: none; }
.hero-strip b { font-family: var(--cond); font-size: 26px; color: var(--ink); }
.hero-strip span { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: 0.06em; }

/* ---------- sections ---------- */

section { scroll-margin-top: 76px; }
.sec-head { margin-bottom: 36px; max-width: 62ch; }
.sec-head h2 {
  font-family: var(--cond);
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; margin-bottom: 14px;
}
.sec-intro { color: var(--ink-dim); font-size: 15.5px; }

.menu-section { background: var(--bg-raise); border-bottom: 1px solid var(--line); padding: 72px 0; }

.menu-board {
  background: var(--bg-board);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 10px 26px;
  position: relative;
}
.menu-board::before {
  content: "CARTA OBSERVADA · POR CONFIRMAR";
  position: absolute; top: -9px; left: 22px;
  background: var(--bg-raise); padding: 0 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; color: var(--gold);
}
.dish {
  display: flex; gap: 18px; align-items: baseline;
  padding: 17px 0; border-bottom: 1px dashed var(--line);
}
.dish:last-child { border-bottom: none; }
.dish-num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; }
.dish h3 {
  font-family: var(--cond); font-size: 20px; letter-spacing: 0.03em;
  display: inline; margin-right: 10px;
}
.dish-anchor .dish-num { color: var(--gold); }
.dish-anchor h3 { border-bottom: 2px solid var(--gold); }
.dish-src { color: var(--ink-faint); font-size: 13.5px; margin-top: 3px; }

.menu-photos {
  display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 16px; margin-top: 30px;
}
.menu-photos figure { display: flex; flex-direction: column; gap: 8px; }
.menu-photos img {
  border: 1px solid var(--line); border-radius: 4px;
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  filter: saturate(0.9);
}
.menu-photos figcaption { font-size: 11px; color: var(--ink-faint); font-family: var(--mono); }

.footnote { color: var(--ink-faint); font-size: 12.5px; margin-top: 22px; max-width: 64ch; }

/* ---------- gap ---------- */

.gap-section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.gap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gap-card {
  background: var(--bg-board); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px;
}
.gap-card h3 {
  font-family: var(--cond); font-size: 17px; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 16px; color: var(--ink);
}
.gap-card ul, .gap-card ol { list-style: none; }
.gap-card li {
  color: var(--ink-dim); font-size: 14px; padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  display: flex; gap: 10px;
}
.gap-card li:last-child { border-bottom: none; }
.gap-card li::before { content: "+"; color: var(--accent); font-weight: 700; }
.gap-card-dark li::before { content: "×"; color: var(--ink-faint); }
.gap-card-dark { background: #0a0e13; }
.gap-card-note li::before { content: counter(q, decimal-leading-zero) " "; counter-increment: q; color: var(--gold); font-family: var(--mono); font-size: 11px; }
.gap-card-note ol { counter-reset: q; }

/* ---------- visit ---------- */

.visit { padding: 72px 0; background: var(--bg-raise); }
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; }
.visit-card {
  background: var(--bg-board); border: 1px solid var(--line); border-radius: 6px;
  padding: 30px;
}
.mini {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.visit-card h3 { font-family: var(--cond); font-size: 26px; margin-bottom: 8px; }
.addr { color: var(--ink-dim); font-size: 14.5px; margin-bottom: 8px; }
.src { color: var(--ink-faint); font-size: 12.5px; margin-bottom: 20px; }
.visit-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.visit-meta dt { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; color: var(--ink-faint); margin-bottom: 4px; }
.visit-meta dd { font-size: 13.5px; color: var(--ink); }

.visit-card-held { display: flex; flex-direction: column; }
.held-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 13px 0; border-bottom: 1px dashed var(--line);
}
.held-row b { font-family: var(--cond); font-size: 17px; letter-spacing: 0.04em; }
.held-row span { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.05em; }
.visit-card-held .footnote { margin-top: auto; padding-top: 18px; }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); padding: 40px 0 56px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.foot p { color: var(--ink-faint); font-size: 12.5px; margin-top: 8px; max-width: 56ch; }
.foot .lockup-text { font-size: 18px; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 44px 24px 40px; gap: 30px; }
  .hero-photo { max-width: 480px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div { border-bottom: 1px solid var(--line); }
  .menu-photos { grid-template-columns: 1fr 1fr; }
  .menu-photos figure:last-child { display: none; }
  .gap-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 20px; }
  .topnav { display: none; }
}

@media (max-width: 560px) {
  .menu-photos { grid-template-columns: 1fr; }
  .visit-meta { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .dish { gap: 12px; }
}
