/* Salt Forge Kitchen — dark bento grid + mobile dock */
:root {
  --bg: #0e0c0b;
  --tile: #1a1715;
  --tile2: #242019;
  --line: #3a342e;
  --text: #f3eee8;
  --dim: #9a8f84;
  --ember: #e07830;
  --gold: #c9a227;
  --radius: 18px;
  --font: "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-bottom: 5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1100;
  padding: 0.5rem 1rem;
  background: var(--ember);
  color: #fff;
  border-radius: 8px;
}

.desktop-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}

.desktop-nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.85rem;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ember);
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}
.brand span {
  color: var(--gold);
}

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 6rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  html {
    scroll-padding-bottom: 1rem;
  }
  .wrap {
    padding-bottom: 3rem;
  }
}

.bento {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "hero"
    "tagline"
    "menu"
    "hours"
    "chef";
}

@media (min-width: 720px) {
  .bento {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas:
      "hero menu"
      "hero hours"
      "tagline chef";
  }
}

.tile {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow: hidden;
}

.tile--hero {
  grid-area: hero;
  padding: 0;
}

.tile--hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 720px) {
  .tile--hero img {
    height: 100%;
    min-height: 320px;
  }
}

.tile--hero .overlay {
  padding: 1.25rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(14, 12, 11, 0.95));
  margin-top: -4rem;
  position: relative;
}

.tile--hero h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tile--tag {
  grid-area: tagline;
  background: var(--tile2);
  border-color: var(--gold);
  color: var(--dim);
  font-size: 0.92rem;
}

.tile--menu {
  grid-area: menu;
}

.tile--hours {
  grid-area: hours;
}

.tile--chef {
  grid-area: chef;
  padding: 0;
}

.tile--chef img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tile--chef .cap {
  padding: 1rem 1.25rem 1.25rem;
}

.tile h2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
  margin: 0 0 0.65rem;
}

.tile p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--dim);
}

.tile p:last-child {
  margin-bottom: 0;
}

.dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.dish-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--text);
}
.dish-list span:last-child {
  color: var(--gold);
  white-space: nowrap;
}

/* Mobile dock */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.25rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(26, 23, 21, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.dock a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: var(--dim);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.25rem;
  max-width: 5rem;
}

.dock a span {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
}

.dock a.active {
  color: var(--ember);
}

@media (min-width: 768px) {
  .dock {
    display: none;
  }
}

.page-simple {
  max-width: 36rem;
  padding: 1.5rem 1.25rem 6rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-simple {
    padding-bottom: 2rem;
  }
}

.foot {
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.foot a {
  color: var(--gold);
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1rem 0;
}

.foot-legal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid var(--ember);
  color: var(--text);
  background: var(--ember);
  box-shadow: 0 4px 18px rgba(224, 120, 48, 0.4);
}

.foot-legal a:hover,
.foot-legal a:focus-visible {
  filter: brightness(1.1);
  border-color: var(--gold);
  outline: none;
}

/* cookie */
@keyframes cookie-banner-enter {
  from {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--tile2);
  border-top: 2px solid var(--ember);
  padding: 0.85rem 1rem 4.5rem;
  font-size: 0.85rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}

#cookie-consent:not([hidden]) {
  animation: cookie-banner-enter 0.44s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 768px) {
  .cookie-banner {
    padding-bottom: 0.85rem;
  }
}

.cookie-banner__inner {
  max-width: 68rem;
  margin: 0 auto;
}
.cookie-banner__title {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--ember);
}
.bf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.bf button {
  font: inherit;
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text);
  cursor: pointer;
}
.bf button.primary {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  font-weight: 700;
}
