@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;600;700&display=swap");

:root {
  --green: #0a3d0a;
  --green2: #0f5c0f;
  --red: #e84416;
  --red-dk: #c23510;
  --yellow: #f5c518;
  --cream: #fdf6e3;
  --sand: #f0e6c8;
  --ink: #1a0f00;
  --muted: #7a6a50;
  --border: rgba(26, 15, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  transition: 0.3s ease;
}
img {
  max-width: 100%;
  display: block;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  line-height: 1;
}
.pre-tagline {
  font-size: 0.72rem;
  color: rgba(245, 197, 24, 0.5);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 8px;
}
.pre-bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 32px;
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 8px;
  animation: loadbar 1.6s ease forwards;
}
@keyframes loadbar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 61, 10, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}
.nav-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  line-height: 1;
}
.nav-brand span {
  color: rgba(245, 197, 24, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(253, 246, 227, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--yellow);
}
.nav-links .nav-reserve a {
  background: var(--red);
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
}
.nav-links .nav-reserve a:hover {
  background: var(--red-dk);
  color: white;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MARQUEE */
.marquee-strip {
  background: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 0.15em;
  padding: 0 28px;
}
.marquee-track span.sep {
  color: var(--red);
  padding: 0 4px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--yellow);
  display: block;
}
.hero h1 .accent-red {
  color: var(--red);
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(253, 246, 227, 0.65);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  color: white;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(245, 197, 24, 0.4);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
  color: var(--yellow);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.3);
}
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green) 0%, transparent 40%);
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 118px;
  height: 118px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  animation: spin-slow 14s linear infinite;
}
.hero-badge-inner {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
}
.hero-badge-sub {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes spin-slow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-bg-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22vw;
  color: rgba(255, 255, 255, 0.022);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* DIAGONAL DIVIDERS */
.diag {
  width: 100%;
  height: 70px;
  position: relative;
  overflow: hidden;
}
.diag.g2c {
  background: var(--green);
}
.diag.g2c::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.diag.c2g {
  background: var(--cream);
}
.diag.c2g::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--green);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.diag.s2g {
  background: var(--sand);
}
.diag.s2g::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--green);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.diag.c2s {
  background: var(--cream);
}
.diag.c2s::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--sand);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* FEATURED */
.featured {
  background: var(--cream);
  padding: 80px 60px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
}
.section-link {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.section-link:hover {
  gap: 12px;
  color: var(--red-dk);
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dish-card {
  background: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}
.dish-card:hover .dish-img img {
  transform: scale(1.08);
}
.dish-card:hover .dish-overlay {
  opacity: 1;
}
.dish-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}
.dish-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 2;
}
.dish-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 10, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-overlay-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
}
.dish-info {
  padding: 20px;
  border-top: 3px solid var(--yellow);
}
.dish-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.dish-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.dish-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  color: var(--red);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* STORY */
.story {
  background: var(--green);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.story-tag-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18vw;
  color: rgba(255, 255, 255, 0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.story-imgs {
  position: relative;
  height: 460px;
}
.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--green);
}
.story-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-stat {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--yellow);
  padding: 20px 22px;
  text-align: center;
  border-radius: 12px;
  z-index: 2;
}
.story-stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
}
.story-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-top: 2px;
}
.story-content .section-label {
  color: var(--yellow);
}
.story-content .section-title {
  color: var(--cream);
}
.story-text {
  color: rgba(253, 246, 227, 0.65);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 24px 0 36px;
  max-width: 440px;
}
.story-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}
.story-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(253, 246, 227, 0.8);
}
.story-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: CIRCLE;
  flex-shrink: 0;
}
.btn-story {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: 12px;
  transition: background 0.25s, color 0.25s;
}
.btn-story:hover {
  background: var(--yellow);
  color: var(--green);
}

/* HOURS & LOCATION */
.hours-loc {
  background: var(--sand);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hours-side .section-label {
  color: var(--red);
}
.hours-side .section-title {
  color: var(--green);
}
.hours-list {
  margin-top: 36px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hours-time {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--green);
}
.hours-special {
  margin-top: 22px;
  background: var(--green);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  line-height: 1.7;
}
.hours-special strong {
  color: var(--yellow);
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.loc-map {
  width: 100%;
  height: 300px;
  background: var(--green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.loc-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(245, 197, 24, 0.04) 20px,
    rgba(245, 197, 24, 0.04) 22px
  );
}
.loc-map-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.loc-map-label i {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
}
.loc-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
}
.loc-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* RESERVE CTA */
.reserve-cta {
  background: var(--red);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.reserve-cta::before {
  content: "BOOK";
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22vw;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}
.reserve-cta .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.reserve-cta .section-title {
  color: white;
}
.reserve-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 480px;
}
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 18px 36px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.btn-reserve:hover {
  background: #f0bc10;
  transform: translateY(-2px);
  color: var(--green);
}

/* CATERING */
.catering {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.catering-imgs {
  position: relative;
  height: 420px;
}
.cat-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 72%;
  border-radius: 16px;
  overflow: hidden;
}
.cat-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 54%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--cream);
}
.cat-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catering-floating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  padding: 12px 18px;
  border-radius: 12px;
  white-space: nowrap;
  z-index: 2;
}
.catering-content .section-label {
  color: var(--red);
}
.catering-content .section-title {
  color: var(--ink);
  margin-bottom: 18px;
}
.catering-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.catering-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.perk::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: CIRCLE;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background: var(--ink);
  padding: 80px 60px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 0.7rem;
  color: rgba(253, 246, 227, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 0.84rem;
  color: rgba(253, 246, 227, 0.42);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.fsocial {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 246, 227, 0.45);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.fsocial:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.footer-col h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a,
.footer-col p,
.footer-col a {
  font-size: 0.83rem;
  color: rgba(253, 246, 227, 0.42);
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}
.footer-col ul a:hover,
.footer-col a:hover {
  color: var(--yellow);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.74rem;
  color: rgba(253, 246, 227, 0.22);
}
.footer-bottom a {
  color: rgba(245, 197, 24, 0.55);
}
.footer-bottom a:hover {
  color: var(--yellow);
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: white;
  border-radius: CIRCLE;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(232, 68, 22, 0.4);
  transition: transform 0.2s, background 0.2s;
}
.back-top.show {
  display: flex;
}
.back-top:hover {
  transform: translateY(-3px);
  background: var(--red-dk);
  color: white;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PAGE BANNER */
.page-banner {
  min-height: 340px;
  background: var(--green);
  display: flex;
  align-items: flex-end;
  padding: 60px 60px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(245, 197, 24, 0.03) 28px,
    rgba(245, 197, 24, 0.03) 30px
  );
}
.page-banner-content {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}
.page-banner .section-label {
  margin-bottom: 12px;
  color: var(--yellow);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253, 246, 227, 0.4);
}
.breadcrumb a {
  color: rgba(253, 246, 227, 0.4);
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb span {
  color: var(--yellow);
}

/* FORM STYLES */
.form-section {
  background: var(--cream);
  padding: 80px 60px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.form-info .section-title {
  color: var(--green);
  margin-bottom: 20px;
}
.form-info-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.form-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
}
.form-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.form-card {
  background: white;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(26, 15, 0, 0.08);
}
.form-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 61, 10, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

/* MENU PAGE */
.menu-section {
  background: var(--cream);
  padding: 80px 60px;
}
.menu-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: var(--yellow);
  border-color: var(--green);
}
.menu-category-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 15, 0, 0.12);
}
.menu-card-img {
  height: 180px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}
.menu-card-body {
  padding: 16px;
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.menu-card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.menu-card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--red);
  white-space: nowrap;
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.menu-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.badge-popular {
  background: rgba(232, 68, 22, 0.1);
  color: var(--red);
}
.badge-new {
  background: rgba(10, 61, 10, 0.1);
  color: var(--green);
}
.badge-spicy {
  background: rgba(245, 197, 24, 0.2);
  color: #8a6000;
}

/* ABOUT PAGE */
.about-section {
  background: var(--cream);
  padding: 80px 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about-text .section-title {
  color: var(--green);
  margin-bottom: 20px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-section {
  background: var(--green);
  padding: 80px 60px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  transition: background 0.3s;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.value-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: rgba(245, 197, 24, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.value-text {
  font-size: 0.85rem;
  color: rgba(253, 246, 227, 0.5);
  line-height: 1.75;
}
.values-section .section-title {
  color: var(--cream);
}
.values-section .section-label {
  color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 80px 40px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-imgs {
    height: 300px;
  }
  .hours-loc {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .catering {
    grid-template-columns: 1fr;
  }
  .catering-imgs {
    height: 300px;
  }
  .reserve-cta {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .dishes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    gap: 0;
  }
  .nav-links.open {
    max-height: 420px;
  }
  .nav-links li a {
    display: block;
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links .nav-reserve {
    padding: 16px 24px;
  }
  .hamburger {
    display: flex;
  }
  .featured,
  .story,
  .hours-loc,
  .reserve-cta,
  .catering,
  .footer,
  .about-section,
  .menu-section,
  .form-section,
  .values-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .catering-perks {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .page-banner {
    padding: 80px 24px 40px;
  }
  .story-stat {
    right: 0;
  }
}
