/* ==========================================================================
   Neribo Kitchen — design tokens
   ========================================================================== */
:root{
  --ink: #1D1613;
  --ink-soft: #4a3f38;
  --paprika: #B23A2E;
  --paprika-soft: #c9584c;
  --gold: #E0A83E;
  --gold-soft: #eec06a;
  --herb: #4B6B3A;
  --cream: #F3EADD;
  --tan: #EFE3D0;
  --white: #ffffff;
  --line: rgba(29,22,19,0.14);

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --radius: 4px;
}

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

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-style: normal;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.12;
  font-weight: 400;
}

p{ margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }
a{ color: inherit; }
img{ max-width: 100%; display: block; }

.skip-link{
  position: absolute;
  left: -999px; top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 200;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary{
  background: var(--paprika);
  color: var(--white);
}
.btn-primary:hover{ background: var(--paprika-soft); }

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--cream); }

.btn-ghost-light{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.14); }

.btn-whatsapp{
  background: var(--herb);
  color: var(--white);
  font-size: 0.88rem;
  padding: 0.65em 1.1em;
}
.btn-whatsapp:hover{ background: #3b5730; }
.icon-wa{ width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}
.logo{
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark{
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
}
.logo-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text{
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}
.logo-sub{
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.main-nav{ display: flex; gap: 1.8em; }
.main-nav a{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 0.25em 0;
}
.main-nav a:hover{ color: var(--paprika); }
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.15s ease;
}
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 1em; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--ink);
}

/* ==========================================================================
   Hero — full-bleed photo, left-aligned copy
   ========================================================================== */
.hero{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  background: var(--ink);
  min-height: 560px;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5em, 5vw, 4.5em) clamp(1.5em, 4vw, 3.5em);
  color: var(--cream);
}
.hero-kicker{
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.9em;
  max-width: none;
}
.hero-copy h1{
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 14ch;
  color: var(--cream);
  margin-bottom: 0.4em;
}
.hero-lede{
  font-size: 1.05rem;
  max-width: 42ch;
  color: rgba(243,234,221,0.82);
}
.hero-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1.4em;
}

.hero-visual{
  position: relative;
  min-height: 320px;
}
.hero-image-slot{
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(150deg, #7a2e22 0%, #b6772b 60%, #e0a83e 130%);
  overflow: hidden;
}
.hero-image-slot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stamp{
  position: absolute;
  right: clamp(1em, 3vw, 2.5em);
  bottom: clamp(1em, 3vw, 2.5em);
  background: var(--gold);
  color: var(--ink);
  padding: 1em 1.3em;
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
}
.stamp-line{
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}
.stamp-big{ font-size: 0.92rem; margin-top: 0.15em; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section{ padding: clamp(3em, 7vw, 5.5em) 1.5em; }
.section-dark{ background: var(--ink); }
.section-tan{ background: var(--tan); }
.section-inner{ max-width: var(--max); margin: 0 auto; }
.section-head{ max-width: 640px; margin-bottom: clamp(2em, 5vw, 3em); }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p{ font-size: 1.02rem; }
.section-head-light h2{ color: var(--cream); }
.section-head-light p{ color: rgba(243,234,221,0.75); }

/* Our story */
.story-inner{ max-width: 780px; }
.story-copy h2{ font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.story-copy p{ font-size: 1.08rem; max-width: 68ch; }

/* ==========================================================================
   Menu — printed-menu convention: name + dotted leader + price
   ========================================================================== */
.menu-columns{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8em 3.5em;
}
.menu-category h3{
  color: var(--gold);
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(224,168,62,0.35);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.menu-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item{ margin-bottom: 1.3em; }
.menu-item:last-child{ margin-bottom: 0; }
.menu-item-head{
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.menu-item-name{
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--cream);
  white-space: nowrap;
}
.menu-item-head::after{
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(243,234,221,0.35);
  transform: translateY(-4px);
}
.menu-item-price{
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--paprika-soft);
  white-space: nowrap;
  font-size: 0.98rem;
}
.menu-item-desc{
  display: block;
  font-size: 0.9rem;
  color: rgba(243,234,221,0.65);
  margin-top: 0.3em;
  max-width: 46ch;
}

/* ==========================================================================
   Gallery — asymmetric masonry
   ========================================================================== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 1em;
}
.gallery-item{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 1;
  grid-row: span 1;
  background: linear-gradient(150deg, #7a2e22 0%, #b6772b 60%, #e0a83e 130%);
}
.gallery-item-tall{ grid-row: span 2; }
.gallery-item-wide{ grid-column: span 2; }
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8em 1em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(29,22,19,0.75), transparent);
}

/* Find us */
.find-us-inner p{ font-size: 1.02rem; }
.hours-line{
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paprika);
  margin-bottom: 1.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: #140e0b; color: rgba(243,234,221,0.85); }
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 3em 1.5em 2em;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2em;
}
.footer-brand{ display: flex; gap: 0.8em; align-items: flex-start; }
.logo-mark-footer{ background: var(--gold); color: var(--ink); }
.footer-name{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0 0 0.2em;
}
.footer-tag{ font-size: 0.88rem; color: rgba(243,234,221,0.6); margin: 0; }
.footer-contact, .footer-nav{
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  font-size: 0.92rem;
}
.footer-contact a, .footer-nav a{ text-decoration: none; color: rgba(243,234,221,0.85); }
.footer-contact a:hover, .footer-nav a:hover{ color: var(--gold); }
.footer-bottom{
  border-top: 1px solid rgba(243,234,221,0.12);
  padding: 1.2em 1.5em;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(243,234,221,0.5);
}
.footer-bottom p{ margin: 0; max-width: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; min-height: 300px; }
  .menu-columns{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide{ grid-column: span 2; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 800px){
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5em 1.5em 1em;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ padding: 0.7em 0; border-bottom: 1px solid var(--line); }
  .nav-toggle{ display: flex; }
  .btn-whatsapp span{ display: none; }
}

@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .footer-inner{ grid-template-columns: 1fr; }
  .header-actions{ gap: 0.6em; }
  .btn-whatsapp{ padding: 0.6em 0.8em; }
  .hero-stamp{ width: 96px; height: 96px; }
}
