:root {
  --green: #2f8f3e;
  --green-dark: #246e30;
  --green-bright: #7ac143;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --soft: #f5f8f3;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* Visually hidden but available to screen readers and search engines.
   Used for semantic headings on pages where the visual design relies on
   an image-based banner. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TOP BAR / HEADER === */
.topbar {
  background: var(--green-bright);
  color: #fff;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a { color: #fff; transition: opacity .15s; }
.main-nav a:hover, .main-nav a.active { opacity: .75; text-decoration: underline; }

.btn-chownow {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background .15s, transform .15s;
}
.btn-chownow:hover { background: var(--green-dark); }
.btn-chownow:active { transform: translateY(1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

/* === LOGO BANNER === */
.logo-banner {
  text-align: center;
  padding: 30px 24px 10px;
}
.logo-banner img {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--green-dark); }
.btn:active { transform: translateY(1px); }
.btn-center { display: block; width: fit-content; margin: 30px auto 0; }

/* === FEATURED PHOTOS === */
.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 24px 0 0;
}
.featured figure { margin: 0; position: relative; overflow: hidden; }
.featured img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured figure:hover img { transform: scale(1.05); }
.featured figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 15px;
  padding: 40px 16px 16px;
}

/* === SECTIONS === */
.section { padding: 70px 0; }
.section-soft { background: var(--soft); }

.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px 24px;
}
.about h2 {
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink);
}
.about h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--green);
  margin-top: 12px;
  border-radius: 2px;
}
.about p { margin: 0 0 16px; color: #333; }
.about-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px -22px rgba(0,0,0,0.4);
  object-fit: cover;
}

/* Transparent cut-out illustration: drop the boxy frame, hug the contour */
.about-photo--illustration { align-self: center; }
.about-photo--illustration img {
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.28));
}

/* About with no photo — single centered column */
.about.about-centered {
  display: block;
  max-width: 820px;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 70px;
}
.about.about-centered h2::after { margin-left: auto; margin-right: auto; }
.about.about-centered p { text-align: left; }

.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--green);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-head p { color: var(--muted); margin-top: 12px; }

/* === INFO GRID (hours / location / catering) === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.info-card {
  background: #fff;
  border: 1px solid #e7ece4;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
}
.info-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--green);
}
.info-card .icon svg { width: 26px; height: 26px; fill: currentColor; }
.info-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-card p { margin: 4px 0; color: #444; }
.info-card a { color: var(--green); font-weight: 700; }
.info-card .closed { color: #c0392b; font-weight: 700; }

/* === MENU PAGE === */
.menu-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
}
.menu-cat { margin-bottom: 50px; }
.menu-cat h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  text-transform: uppercase;
  color: var(--green-dark);
  border-bottom: 3px solid var(--green-bright);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #dfe5da;
}
.menu-item .name { font-weight: 600; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted #c7cfc1; transform: translateY(-4px); }
.menu-item .price { font-weight: 700; color: var(--green-dark); white-space: nowrap; }

.menu-wrap h1 {
  font-size: clamp(34px, 5vw, 52px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.menu-wrap h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--green);
  margin-top: 14px;
  border-radius: 2px;
}
.menu-lead {
  font-size: 20px;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 14px;
}
.menu-cta { margin: 28px 0 14px; }
.menu-note { color: var(--green); font-weight: 700; margin-top: 16px; }

/* === FOOTER === */
.site-footer {
  background: #1c2a1d;
  color: #e8efe6;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  color: var(--green-bright);
}
.footer-col p { margin: 6px 0; font-size: 15px; color: #c9d5c6; }
.footer-col a { color: #c9d5c6; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-socials { display: flex; gap: 12px; margin-top: 6px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1.5px solid #5c7a5e;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #e8efe6;
  transition: background .15s, color .15s, border-color .15s;
}
.footer-socials a:hover { background: var(--green-bright); border-color: var(--green-bright); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* Social icon row on light page sections */
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.social-row a {
  width: 48px;
  height: 48px;
  border: 2px solid var(--green);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background .15s, color .15s, border-color .15s;
}
.social-row a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.social-row svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
  text-align: center;
  padding: 26px 24px;
  margin-top: 46px;
  border-top: 1px solid #2f4030;
  font-size: 13px;
  color: #9fb19c;
}

/* === FOOD CAROUSEL (auto-scroll strip) === */
.food-strip {
  overflow: hidden;
  padding: 10px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.food-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: foodScroll 55s linear infinite;
}
.food-strip:hover .food-strip-track { animation-play-state: paused; }
.food-strip figure {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.45);
}
.food-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.food-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 34px 14px 14px;
}
@keyframes foodScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .food-strip-track { animation: none; }
}

/* === SCROLL REVEALS === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === RESPONSIVE === */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { order: -1; }
  .featured {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px;
  }
  .featured figure { border-radius: 12px; }
  .featured figure:first-child { grid-column: 1 / -1; }
  .featured img { height: 150px; }
  .featured figure:first-child img { height: 210px; }
  .featured figcaption { font-size: 12px; padding: 26px 10px 10px; }
  .food-strip img { height: 190px; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-socials { justify-content: center; }
  .topbar-inner { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; width: 100%; flex-direction: column;
    align-items: center; gap: 12px; padding-top: 10px;
  }
  .main-nav.open { display: flex; }
  .section { padding: 50px 0; }
}
