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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f6f3ee;
  color: #111111;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f6f3ee;
  border-bottom: 1px solid #ddd3c7;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: #111;
}

.logo h2 {
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: -1px;
}

.logo span {
  color: #c48a1a;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c48a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #c48a1a;
  transition: 0.3s ease;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline.dark {
  color: #111;
  border-color: #c48a1a;
}
.nav-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}
/* HERO */

.hero-section {
  background: #140602;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  align-items: center;
  gap: 70px;
}

.hero-content {
  padding: 80px 0;
}

.hero-content h1 {
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -4px;
  color: #fff;
  max-width: 620px;
}

.eyebrow {
  color: #c48a1a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.hero-text {
  color: #efe8dd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 500px;
  margin: 34px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.directions-link {
  display: inline-block;
  margin-top: 26px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.hero-image {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0 0;
  }

  .hero-content h1 {
    font-size: clamp(52px, 14vw, 74px);
  }

  .hero-image img {
    height: 420px;
    border-radius: 18px;
  }
}

/* SECTIONS */

.menu-section,
.community-section,
.about-section,
.location-section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.community-text h2,
.about-text h2,
.catering-text h2 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.menu-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.menu-tabs span {
  font-size: 13px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd3c7;
}

.menu-tabs span:first-child {
  background: #c48a1a;
  color: #fff;
  border-color: #c48a1a;
}

/* DISH CARDS */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dish-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ece7df;
  transition: 0.3s ease;
  cursor: pointer;
}

.dish-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.dish-info {
  padding: 18px;
}

.dish-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.dish-info p {
  color: #5e5a55;
  line-height: 1.55;
  font-size: 14px;
  min-height: 68px;
}

.dish-info span {
  display: inline-block;
  margin-top: 14px;
  color: #c48a1a;
  font-size: 22px;
  font-weight: 900;
}

/* COMMUNITY */

.community-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.stars {
  color: #c48a1a;
  font-size: 22px;
  margin: 20px 0;
}

.quote {
  font-size: 20px;
  line-height: 1.7;
  max-width: 520px;
}

.customer {
  margin-top: 20px;
  font-weight: 900;
}

.community-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.community-gallery img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.community-gallery img:first-child {
  grid-row: span 2;
  height: 434px;
}

/* ABOUT */

.about-section {
  border-top: 1px solid #ddd3c7;
  border-bottom: 1px solid #ddd3c7;
}

.about-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-text p:not(.eyebrow),
.catering-text p {
  color: #5e5a55;
  line-height: 1.8;
  font-size: 17px;
  margin-top: 18px;
}

.about-image img,
.catering-image img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* CATERING */

.catering-section {
  padding: 90px 0;
  background: #efe8dd;
}

.catering-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.catering-text .btn {
  margin-top: 28px;
}

/* LOCATION */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-card,
.location-card {
  background: #fff;
  border: 1px solid #ddd3c7;
  border-radius: 18px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
}

.location-card {
  padding: 34px;
  display: grid;
  gap: 24px;
}

.location-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.location-card p {
  color: #5e5a55;
  line-height: 1.6;
}

/* FOOTER */

.site-footer {
  background: #111;
  color: #fff;
  padding: 48px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h3 {
  font-size: 32px;
  line-height: 1;
}

.footer-logo p {
  color: #c48a1a;
  font-weight: 800;
}

.footer-contact p {
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-container,
  .community-container,
  .about-container,
  .catering-container,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-container {
    padding: 70px 0 0;
  }

  .hero-image {
    height: 420px;
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    flex-direction: column;
  }
}

/* =========================================
   MENU PAGE
========================================= */

.menu-page-hero {
  padding: 140px 0 80px;
  background: #f5f1ea;
  text-align: center;
}

.menu-page-hero h1 {
  font-size: 64px;
  margin: 20px 0;
  line-height: 1.1;
}

.menu-page-hero p {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 18px;
}

.dynamic-menu-section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 42px;
  margin-top: 10px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dish-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ece7df;
  transition: 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
}

.dish-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.dish-info {
  padding: 24px;
}

.dish-info h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.dish-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.dish-info span {
  font-size: 24px;
  font-weight: 700;
  color: #c69214;
}

@media (max-width: 560px) {
  .nav-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

.menu-tab {
  font-size: 13px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd3c7;
  background: transparent;
  cursor: pointer;
}

.menu-tab.active {
  background: #c48a1a;
  color: #fff;
  border-color: #c48a1a;
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd3c7;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  margin: 5px auto;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    background: #f6f3ee;
    border-top: 1px solid #ddd3c7;
    padding: 22px 4%;
  }

  .mobile-menu.active {
    display: grid;
    gap: 18px;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 900;
    font-size: 18px;
  }

  .mobile-order-btn {
    background: #c48a1a;
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
  }

  .menu-tab {
    width: 100%;
    min-height: 72px;
    padding: 18px 14px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
  }

  .menu-section .section-heading h2 {
    font-size: 54px;
    line-height: 0.95;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 70px 90px 0;
}

.hero-content h1 {
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -2.5px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-container {
  min-height: 620px;
}

.hero-image {
  height: 620px;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 60px 0 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 420px;
  }
}

.hero-section .container.hero-container {
  width: min(1180px, 92%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  min-height: 680px;
}

.hero-section .hero-image {
  height: 560px;
  border-radius: 22px;
  overflow: hidden;
}

.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .hero-section .container.hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-section .hero-image {
    height: 380px;
  }
}

.hero-section .container.hero-container {
  gap: 28px;
}

.hero-section .hero-image {
  height: 610px;
  margin-left: -20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section .hero-image {
  position: relative;
  z-index: 1;
}

.site-footer {
  background: #050505;
  color: #fff;
  padding-top: 90px;
  margin-top: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand h2 {
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 6px;
  color: #fff;
}

.footer-brand span {
  color: #c48a1a;
  font-size: 28px;
  font-weight: 700;
}

.footer-brand p {
  color: #b8b8b8;
  margin-top: 28px;
  line-height: 1.8;
  font-size: 17px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer-socials a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);

  padding: 8px 14px;

  border-radius: 12px;

  transition: 0.3s ease;

  font-size: 14px;
  font-weight: 600;
}

.footer-socials a:hover {
  background: #c48a1a;
  border-color: #c48a1a;
}

.footer-links h4,
.footer-contact h4 {
  color: #c48a1a;
  font-size: 18px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #c48a1a;
}

.footer-contact p {
  color: #d0d0d0;
  line-height: 1.9;
  margin-bottom: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-bottom span {
  color: #888;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand h2 {
    font-size: 42px;
  }

  .footer-brand span {
    font-size: 22px;
  }

  .footer-bottom p {
    font-size: 16px;
  }
}

.social-title {
  color: #c48a1a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 28px;
  margin-bottom: 14px;
}

@media (max-width: 560px) {
  .hero-section .container.hero-container,
  .menu-section .container,
  .community-section .container,
  .about-section .container,
  .location-section .container {
    width: min(100% - 32px, 1180px);
  }

  .dish-card {
    width: 100%;
  }

  .hero-section .hero-image {
    margin-left: 0;
  }
}
