/* WALOU LTD - Industrial dark teal + amber. Slab cards, blueprint grid background, mono metric chips, 4px corners. */
:root {
  --wlx-primary: #0EA5C4;
  --wlx-primary-dark: #075E73;
  --wlx-primary-soft: rgba(14, 165, 196, 0.12);
  --wlx-accent: #F59E0B;
  --wlx-accent-soft: rgba(245, 158, 11, 0.18);
  --wlx-bg: #06090E;
  --wlx-surface: #0D1620;
  --wlx-surface-2: #131E2C;
  --wlx-text: #E2E8F0;
  --wlx-text-dim: #94A3B8;
  --wlx-muted: #475569;
  --wlx-border: #1E293B;
  --wlx-border-bright: #2A3B52;
  --wlx-radius: 4px;
  --wlx-radius-lg: 6px;
  --wlx-mono: 'DM Mono', 'Courier New', monospace;
  --wlx-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 64px; }
html, body {
  background: var(--wlx-bg);
  color: var(--wlx-text);
  font-family: var(--wlx-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background:
    repeating-linear-gradient(0deg, rgba(14, 165, 196, 0.025) 0px, rgba(14, 165, 196, 0.025) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(14, 165, 196, 0.025) 0px, rgba(14, 165, 196, 0.025) 1px, transparent 1px, transparent 80px),
    var(--wlx-bg);
}

.wlx-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--wlx-accent); color: #06090E; padding: 8px 16px;
  font-family: var(--wlx-mono); font-size: 0.85rem; z-index: 100;
}
.wlx-skip:focus { left: 8px; top: 8px; }

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

/* ============ TOP BAR ============ */
.wlx-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 9, 14, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--wlx-border);
}
.wlx-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px;
}
.wlx-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; color: var(--wlx-text);
}
.wlx-brand__mono {
  display: inline-block; padding: 4px 8px; border-radius: var(--wlx-radius);
  background: var(--wlx-primary-dark); color: var(--wlx-text);
  font-family: var(--wlx-mono); font-size: 0.8rem;
}
.wlx-brand__name { font-family: var(--wlx-sans); }

.wlx-nav__list {
  list-style: none; display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.wlx-nav__list a {
  color: var(--wlx-text-dim); text-decoration: none; font-size: 0.85rem;
  letter-spacing: 0.02em; padding: 6px 2px;
  border-bottom: 1px solid transparent; transition: color .15s, border-color .15s;
}
.wlx-nav__list a:hover, .wlx-nav__list a:focus {
  color: var(--wlx-primary); border-bottom-color: var(--wlx-primary);
}

.wlx-burger {
  display: none; background: none; border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  cursor: pointer; padding: 0;
}
.wlx-burger span { width: 18px; height: 2px; background: var(--wlx-text); display: block; }

@media (max-width: 920px) {
  .wlx-burger { display: inline-flex; }
  .wlx-nav { display: none; width: 100%; }
  .wlx-nav.is-open { display: block; }
  .wlx-topbar__inner { flex-wrap: wrap; }
  .wlx-nav__list {
    flex-direction: column; align-items: flex-start; gap: 8px;
    width: 100%; padding: 12px 0 6px;
    border-top: 1px solid var(--wlx-border); margin-top: 12px;
  }
  .wlx-nav__list a { display: block; width: 100%; padding: 8px 0; }
}

/* ============ HERO ============ */
.wlx-hero {
  position: relative;
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse at top right, rgba(14, 165, 196, 0.08), transparent 60%),
    linear-gradient(180deg, transparent 0%, var(--wlx-bg) 95%),
    repeating-linear-gradient(0deg, rgba(14, 165, 196, 0.04) 0px, rgba(14, 165, 196, 0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(14, 165, 196, 0.04) 0px, rgba(14, 165, 196, 0.04) 1px, transparent 1px, transparent 40px),
    var(--wlx-bg);
  border-bottom: 1px solid var(--wlx-border);
}
.wlx-hero__inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 48px; align-items: center;
}
@media (max-width: 760px) {
  .wlx-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .wlx-hero__art { order: -1; max-width: 220px; margin: 0 auto; }
}
.wlx-eyebrow {
  display: inline-block; font-family: var(--wlx-mono); font-size: 0.75rem;
  letter-spacing: 0.18em; color: var(--wlx-accent); text-transform: uppercase;
  margin-bottom: 16px; padding: 4px 8px;
  border: 1px solid var(--wlx-accent-soft); border-radius: var(--wlx-radius);
}
.wlx-headline {
  font-size: clamp(2rem, 5.2vw, 3.2rem); font-weight: 700; line-height: 1.12;
  margin-bottom: 16px; color: var(--wlx-text); letter-spacing: -0.01em;
}
.wlx-lede { color: var(--wlx-text-dim); font-size: 1.08rem; max-width: 640px; margin-bottom: 24px; }
.wlx-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.wlx-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: var(--wlx-radius);
  font-family: var(--wlx-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.wlx-btn:active { transform: translateY(1px); }
.wlx-btn--primary {
  background: var(--wlx-primary); color: #06090E; border-color: var(--wlx-primary);
}
.wlx-btn--primary:hover { background: #1AB8DA; border-color: #1AB8DA; }
.wlx-btn--ghost {
  background: transparent; color: var(--wlx-text); border-color: var(--wlx-border-bright);
}
.wlx-btn--ghost:hover { border-color: var(--wlx-primary); color: var(--wlx-primary); }

.wlx-meta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.wlx-chip {
  display: inline-block; padding: 5px 11px; border-radius: var(--wlx-radius);
  background: var(--wlx-surface); border: 1px solid var(--wlx-border);
  font-family: var(--wlx-mono); font-size: 0.74rem; color: var(--wlx-primary);
  letter-spacing: 0.04em; text-transform: uppercase;
}

.wlx-hero__art { display: flex; justify-content: center; }
.wlx-hero__svg { width: 100%; max-width: 260px; height: auto; }

/* ============ SECTION ============ */
.wlx-section { padding: 72px 0; position: relative; }
.wlx-section--dark {
  background: var(--wlx-surface);
  border-top: 1px solid var(--wlx-border); border-bottom: 1px solid var(--wlx-border);
}
.wlx-h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 700;
  margin-bottom: 12px; color: var(--wlx-text); letter-spacing: -0.005em;
}
.wlx-h2::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--wlx-accent); margin-top: 12px;
}
.wlx-section__lede {
  color: var(--wlx-text-dim); font-size: 1rem; max-width: 720px;
  margin-bottom: 32px;
}

/* ============ ABOUT (carry-over) ============ */
.wlx-fact-list {
  display: grid; grid-template-columns: minmax(150px, 1fr) 2fr;
  gap: 10px 24px; margin-top: 16px;
  background: var(--wlx-surface); padding: 22px;
  border: 1px solid var(--wlx-border); border-radius: var(--wlx-radius);
}
.wlx-section--dark .wlx-fact-list { background: var(--wlx-surface-2); }
.wlx-fact-list dt { color: var(--wlx-text-dim); font-family: var(--wlx-mono); font-size: 0.82rem; }
.wlx-fact-list dd { color: var(--wlx-text); }
.wlx-fact-list a { color: var(--wlx-primary); text-decoration: none; }
.wlx-fact-list a:hover { color: var(--wlx-accent); }

/* ============ FOOTER ============ */
.wlx-footer {
  padding: 26px 0; border-top: 1px solid var(--wlx-border);
  font-size: 0.84rem; color: var(--wlx-text-dim);
  background: var(--wlx-bg);
}
.wlx-footer__inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.wlx-footer a { color: var(--wlx-text-dim); text-decoration: none; }
.wlx-footer a:hover { color: var(--wlx-primary); }

/* ============ MENU FILTER ============ */
.wlx-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.wlx-filter__btn {
  padding: 8px 16px; border-radius: var(--wlx-radius);
  background: var(--wlx-surface); border: 1px solid var(--wlx-border);
  color: var(--wlx-text-dim); font-family: var(--wlx-mono);
  font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.wlx-filter__btn:hover { color: var(--wlx-primary); border-color: var(--wlx-primary); }
.wlx-filter__btn.is-active {
  background: var(--wlx-primary); color: #06090E; border-color: var(--wlx-primary);
}

.wlx-dishes {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.wlx-dish {
  background: var(--wlx-surface); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 18px;
  transition: border-color .15s, transform .15s;
}
.wlx-dish:hover { border-color: var(--wlx-primary); transform: translateY(-2px); }
.wlx-dish.is-hidden { display: none; }
.wlx-dish__head {
  display: flex; justify-content: space-between; gap: 12px;
  align-items: flex-start; margin-bottom: 8px;
}
.wlx-dish__head h3 { font-size: 1rem; font-weight: 600; color: var(--wlx-text); }
.wlx-dish__price {
  font-family: var(--wlx-mono); color: var(--wlx-accent); font-size: 0.9rem;
  white-space: nowrap; flex-shrink: 0;
}
.wlx-dish p { color: var(--wlx-text-dim); font-size: 0.9rem; margin-bottom: 12px; }
.wlx-dish__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wlx-tag {
  font-family: var(--wlx-mono); font-size: 0.7rem;
  padding: 3px 7px; border-radius: var(--wlx-radius);
  background: var(--wlx-primary-soft); color: var(--wlx-primary);
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* ============ CALCULATOR (shared) ============ */
.wlx-calc {
  background: var(--wlx-surface); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius-lg); padding: 24px;
}
.wlx-section--dark .wlx-calc { background: var(--wlx-surface-2); }
.wlx-calc__head {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 18px;
}
.wlx-field {
  display: flex; flex-direction: column; gap: 6px;
}
.wlx-field > span {
  font-family: var(--wlx-mono); font-size: 0.74rem; color: var(--wlx-text-dim);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.wlx-field input,
.wlx-field select {
  background: var(--wlx-bg); color: var(--wlx-text); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 9px 12px; font: inherit;
  font-family: var(--wlx-sans); transition: border-color .15s;
}
.wlx-field input:focus,
.wlx-field select:focus {
  outline: none; border-color: var(--wlx-primary);
}

.wlx-rows {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.wlx-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 8px; align-items: center;
  background: var(--wlx-bg); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 8px;
}
.wlx-row input {
  background: transparent; color: var(--wlx-text); border: 1px solid transparent;
  border-radius: var(--wlx-radius); padding: 6px 8px; font: inherit;
  font-family: var(--wlx-sans);
}
.wlx-row input:focus { outline: none; border-color: var(--wlx-primary); background: var(--wlx-surface); }
.wlx-row input[type="number"] { font-family: var(--wlx-mono); text-align: right; }
.wlx-row__del {
  background: transparent; border: 1px solid var(--wlx-border);
  color: var(--wlx-text-dim); border-radius: var(--wlx-radius);
  width: 30px; height: 30px; cursor: pointer; font-size: 1rem; line-height: 1;
}
.wlx-row__del:hover { border-color: var(--wlx-accent); color: var(--wlx-accent); }

@media (max-width: 560px) {
  .wlx-row { grid-template-columns: 1fr 1fr auto; }
  .wlx-row > input:first-child { grid-column: 1 / -1; }
}

.wlx-calc__actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.wlx-calc__out {
  border-left: 3px solid var(--wlx-accent);
  background: var(--wlx-bg); padding: 14px 18px; border-radius: var(--wlx-radius);
  margin-top: 12px; min-height: 60px;
}
.wlx-calc__out h4 {
  font-family: var(--wlx-mono); font-size: 0.78rem; color: var(--wlx-text-dim);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.wlx-calc__out .wlx-figure {
  font-family: var(--wlx-mono); font-size: 1.6rem; color: var(--wlx-primary);
  display: block; margin: 4px 0;
}
.wlx-calc__out .wlx-figure--sub {
  font-size: 0.95rem; color: var(--wlx-accent);
}
.wlx-calc__out table {
  width: 100%; border-collapse: collapse; margin-top: 10px;
  font-family: var(--wlx-mono); font-size: 0.85rem;
}
.wlx-calc__out table th,
.wlx-calc__out table td {
  text-align: left; padding: 6px 8px;
  border-bottom: 1px solid var(--wlx-border);
}
.wlx-calc__out table th { color: var(--wlx-text-dim); font-weight: 500; }
.wlx-calc__out table td.wlx-num { text-align: right; color: var(--wlx-primary); }

.wlx-saved {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--wlx-border);
}
.wlx-saved:empty { display: none; }
.wlx-saved h4 {
  font-family: var(--wlx-mono); font-size: 0.78rem; color: var(--wlx-text-dim);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px;
}
.wlx-saved ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.wlx-saved li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 12px; background: var(--wlx-bg);
  border: 1px solid var(--wlx-border); border-radius: var(--wlx-radius);
  font-family: var(--wlx-mono); font-size: 0.85rem;
}
.wlx-saved li button {
  background: transparent; border: 1px solid var(--wlx-border);
  color: var(--wlx-text-dim); border-radius: var(--wlx-radius);
  padding: 4px 10px; font-family: var(--wlx-mono); font-size: 0.75rem;
  cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
}
.wlx-saved li button:hover { border-color: var(--wlx-accent); color: var(--wlx-accent); }

/* ============ HOURS ============ */
.wlx-hours-wrap {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  max-width: 640px;
}
.wlx-hours-status {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--wlx-surface);
  border: 1px solid var(--wlx-border); border-radius: var(--wlx-radius);
}
.wlx-hours-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--wlx-muted); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(71, 85, 105, 0.16);
}
.wlx-hours-dot.is-open {
  background: #22C55E; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
.wlx-hours-dot.is-closed {
  background: #EF4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}
.wlx-hours-detail { color: var(--wlx-text-dim); font-size: 0.9rem; margin-top: 2px; }
.wlx-hours-list {
  list-style: none; display: grid; gap: 6px;
  border: 1px solid var(--wlx-border); border-radius: var(--wlx-radius);
  padding: 8px; background: var(--wlx-surface);
}
.wlx-hours-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 14px; border-radius: var(--wlx-radius);
  font-family: var(--wlx-mono); font-size: 0.88rem;
}
.wlx-hours-list li.is-today {
  background: var(--wlx-primary-soft); color: var(--wlx-primary);
}
.wlx-hours-list li .wlx-day { font-weight: 500; }
.wlx-hours-list li .wlx-time { color: var(--wlx-text-dim); }
.wlx-hours-list li.is-today .wlx-time { color: var(--wlx-primary); }

/* ============ LOCATION ============ */
.wlx-loc-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 760px) { .wlx-loc-grid { grid-template-columns: 1fr; } }
.wlx-loc-card {
  background: var(--wlx-surface-2); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 22px;
}
.wlx-loc-card__h { font-size: 1.05rem; margin-bottom: 12px; }
.wlx-loc-addr {
  font-style: normal; font-family: var(--wlx-mono); font-size: 0.92rem;
  color: var(--wlx-text); margin-bottom: 16px; line-height: 1.7;
}
.wlx-loc-dl {
  display: grid; grid-template-columns: minmax(120px, 1fr) 2fr; gap: 6px 18px;
}
.wlx-loc-dl dt { color: var(--wlx-text-dim); font-family: var(--wlx-mono); font-size: 0.78rem; }
.wlx-loc-dl dd { color: var(--wlx-text); font-size: 0.92rem; }
.wlx-loc-map {
  background: var(--wlx-surface-2); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 10px; display: flex; align-items: center;
}
.wlx-loc-svg { width: 100%; height: auto; display: block; }

/* ============ STORY (timeline) ============ */
.wlx-timeline {
  list-style: none; counter-reset: wlx;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; padding-left: 8px;
}
.wlx-timeline::before {
  content: ''; position: absolute; left: 22px; top: 18px; bottom: 18px;
  width: 1px; background: var(--wlx-border); z-index: 0;
}
.wlx-timeline li {
  position: relative; padding: 16px 18px 16px 60px;
  background: var(--wlx-surface); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius);
}
.wlx-section--dark .wlx-timeline li { background: var(--wlx-surface-2); }
.wlx-timeline__mark {
  position: absolute; left: 12px; top: 16px;
  width: 30px; height: 30px; line-height: 30px; text-align: center;
  background: var(--wlx-primary-dark); color: var(--wlx-text);
  font-family: var(--wlx-mono); font-size: 0.78rem;
  border-radius: var(--wlx-radius); z-index: 1;
}
.wlx-timeline h3 { font-size: 1rem; margin-bottom: 6px; color: var(--wlx-text); }
.wlx-timeline p { color: var(--wlx-text-dim); font-size: 0.93rem; }

/* ============ TEAM ============ */
.wlx-team-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.wlx-team-card {
  background: var(--wlx-surface-2); border: 1px solid var(--wlx-border);
  border-radius: var(--wlx-radius); padding: 20px;
  transition: border-color .15s, transform .15s;
}
.wlx-team-card:hover { border-color: var(--wlx-primary); transform: translateY(-2px); }
.wlx-team-card__initials {
  display: inline-block; width: 44px; height: 44px; line-height: 44px;
  text-align: center; background: var(--wlx-primary-dark);
  color: var(--wlx-text); font-family: var(--wlx-mono);
  border-radius: var(--wlx-radius); margin-bottom: 12px;
  font-size: 0.95rem; letter-spacing: 0.05em;
}
.wlx-team-card h3 { font-size: 1rem; color: var(--wlx-text); margin-bottom: 4px; }
.wlx-team-card__role {
  font-family: var(--wlx-mono); font-size: 0.78rem; color: var(--wlx-accent);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px;
}
.wlx-team-card p { color: var(--wlx-text-dim); font-size: 0.9rem; }

/* ============ MEDIA TWEAKS ============ */
@media (max-width: 600px) {
  .wlx-fact-list { grid-template-columns: 1fr; padding: 16px; }
  .wlx-fact-list dt { margin-top: 8px; }
  .wlx-section { padding: 56px 0; }
  .wlx-hero { padding: 48px 0 56px; }
  .wlx-loc-dl { grid-template-columns: 1fr; }
}
