/* ==========================================================================
   Chaman Restaurant — Custom WordPress Theme
   main.css | Pakistani/Halal Restaurant, Bronx NY
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  --green-dark:    #1A3A2A;
  --green-primary: #2D6A4F;
  --green-mid:     #4A7C59;
  --green-light:   #EAF4EE;
  --green-pale:    #F4F9F6;
  --gold:          #C9A84C;
  --gold-dark:     #A8883A;
  --gold-light:    #F5EDD6;
  --white:         #FAFAF8;
  --off-white:     #F0EDE6;
  --text-dark:     #1A1A1A;
  --text-muted:    #6B7280;
  --text-light:    #F5F0E8;
  --border:        #DDD5C8;
  --shadow:        rgba(0, 0, 0, 0.08);
  --shadow-md:     rgba(0, 0, 0, 0.14);
  --shadow-lg:     rgba(0, 0, 0, 0.20);
  --radius:        8px;
  --radius-lg:     16px;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --max-width:     1200px;
  --transition:    0.25s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* Section Labels */
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--text-light);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition),
              transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  vertical-align: middle;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary Green */
.btn-primary {
  background-color: var(--green-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--green-dark);
  color: #fff;
}

/* Gold */
.btn-gold {
  background-color: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--green-dark);
}

/* Outline Green */
.btn-outline {
  background-color: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn-outline:hover {
  background-color: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

/* Outline Light (on dark backgrounds) */
.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--green-dark);
}

/* Button Sizes */
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}

/* Ordering Platform Buttons */
.btn-doordash {
  background-color: #FF3008;
  color: #fff;
}

.btn-doordash:hover {
  background-color: #d4260a;
  color: #fff;
}

.btn-ubereats {
  background-color: #000;
  color: #fff;
  border: 2px solid #06C167;
}

.btn-ubereats:hover {
  background-color: #06C167;
  color: #000;
}

.btn-clover {
  background-color: #1DA462;
  color: #fff;
}

.btn-clover:hover {
  background-color: #158a51;
  color: #fff;
}

/* ==========================================================================
   5. LAYOUT
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* Section Backgrounds */
.section-light {
  background-color: var(--white);
}

.section-alt {
  background-color: var(--off-white);
}

.section-green {
  background-color: var(--green-light);
}

.section-pale {
  background-color: var(--green-pale);
}

.section-gold {
  background-color: var(--gold-light);
}

.section-dark {
  background-color: var(--green-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--gold);
}

.section-dark p,
.section-dark li {
  color: var(--text-light);
  opacity: 0.9;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Two-column with alignment */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

/* Flex helpers */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo text fallback */
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.site-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.75;
  display: block;
  margin-top: 2px;
}

/* Navigation */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
  color: var(--gold);
}

.nav-menu .current-menu-item > a::after {
  width: 100%;
}

/* Dropdown menus */
.nav-menu .menu-item-has-children {
  position: relative;
}

.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 200;
}

.nav-menu .menu-item-has-children:hover .sub-menu {
  display: block;
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
  font-size: 0.9rem;
}

.nav-menu .sub-menu li a::after {
  display: none;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  background-color: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: var(--gold-dark);
  color: var(--green-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  background-color: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 1.5rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav .nav-menu li {
  width: 100%;
}

.mobile-nav .nav-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
}

.mobile-nav .nav-menu a::after {
  display: none;
}

.mobile-nav .sub-menu {
  position: static;
  transform: none;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.mobile-nav .sub-menu li a {
  padding-left: 2.5rem;
  font-size: 0.9rem;
}

.mobile-nav-cta {
  padding: 1rem 1.5rem 0;
}

.mobile-nav-cta .nav-cta {
  width: 100%;
  justify-content: center;
  padding: 0.8rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--green-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

/* Gradient overlay on top of bg image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 42, 0.25) 0%,
    rgba(26, 58, 42, 0.55) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.35rem;
}

/* ==========================================================================
   8. MENU CATEGORY CARDS
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-md);
  color: inherit;
}

.category-card-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.04);
}

/* Wrapper for image overflow */
.category-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.category-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img-wrap img {
  transform: scale(1.04);
}

.category-card-body {
  padding: 1.25rem;
}

.category-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.category-card .count {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* ==========================================================================
   9. MENU ITEM CARDS
   ========================================================================== */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.menu-card-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.menu-card-image,
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img-wrap img,
.menu-card:hover .menu-card-image {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-card h3,
.menu-card-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
}

.menu-card-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin: 0;
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   10. ORDERING BUTTONS SECTION
   ========================================================================== */

.order-section {
  background-color: var(--green-light);
  text-align: center;
  padding: 4rem 0;
}

.order-section .section-title {
  color: var(--green-dark);
}

.order-platforms {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.order-platforms .btn {
  min-width: 180px;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.order-platforms .btn svg,
.order-platforms .btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   11. ABOUT / INFO SECTIONS
   ========================================================================== */

.about-section {
  background-color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.two-col.reverse > *:first-child {
  order: 2;
}

.two-col.reverse > *:last-child {
  order: 1;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-md);
}

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

.info-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px var(--shadow);
  border-left: 4px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}

.info-card:hover {
  box-shadow: 0 6px 24px var(--shadow-md);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-primary);
  font-size: 1.25rem;
}

.info-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ==========================================================================
   12. CONTACT PAGE
   ========================================================================== */

.contact-page {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.contact-info-text span,
.contact-info-text a {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-info-text a:hover {
  color: var(--gold);
}

/* Map embed */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-map iframe,
.contact-map .map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-table th {
  background-color: var(--green-dark);
  color: var(--gold);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hours-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.hours-table tr:nth-child(odd) td {
  background-color: var(--white);
}

.hours-table tr:nth-child(even) td {
  background-color: var(--green-pale);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table .day {
  font-weight: 600;
  color: var(--green-dark);
}

.hours-table .time {
  color: var(--text-muted);
}

.hours-table .closed {
  color: #dc2626;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--green-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-tagline {
  color: var(--text-light);
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.5;
}

.footer-contact-list li span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-list a {
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.footer-contact-list a:hover {
  opacity: 1;
  color: var(--gold);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
  font-size: 0.82rem;
  color: var(--text-light);
  opacity: 0.6;
  margin: 0;
}

.footer-bottom a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   14. BREADCRUMBS
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1rem 0;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--green-primary);
}

.breadcrumb-separator {
  color: var(--gold);
  font-size: 0.75rem;
  user-select: none;
}

.breadcrumb .breadcrumb-current,
.breadcrumb span:last-child {
  color: var(--green-primary);
  font-weight: 500;
}

/* ==========================================================================
   15. PAGE HERO (inner pages)
   ========================================================================== */

.page-hero {
  background-color: var(--green-dark);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1,
.page-hero .page-title {
  color: var(--text-light);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero .page-description {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb .breadcrumb-current {
  color: var(--gold);
}

/* ==========================================================================
   16. UTILITY CLASSES
   ========================================================================== */

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Text colors */
.text-gold    { color: var(--gold) !important; }
.text-green   { color: var(--green-primary) !important; }
.text-dark    { color: var(--green-dark) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-light   { color: var(--text-light) !important; }
.text-white   { color: #fff !important; }

/* Font families */
.font-heading { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }

/* Font sizes */
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }

/* Margins top */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Margins bottom */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Display */
.hidden   { display: none !important; }
.sr-only  {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
  white-space: nowrap;
}

.badge-green {
  background-color: var(--green-light);
  color: var(--green-primary);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.badge-gold {
  background-color: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.badge-red {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge-neutral {
  background-color: var(--off-white);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Halal Badge */
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--green-primary);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.halal-badge::before {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 800;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.divider-gold {
  border-top-color: var(--gold);
  opacity: 0.4;
}

/* Gold underline decoration */
.gold-underline {
  position: relative;
  display: inline-block;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
}

/* Card base */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
}

/* Image aspect ratios */
.aspect-square     { aspect-ratio: 1 / 1; }
.aspect-video      { aspect-ratio: 16 / 9; }
.aspect-4-3        { aspect-ratio: 4 / 3; }
.aspect-3-2        { aspect-ratio: 3 / 2; }
.object-cover      { object-fit: cover; width: 100%; height: 100%; }

/* Rounded */
.rounded    { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 50px; }

/* ==========================================================================
   17. ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Fade in on scroll — initial state */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Triggered by IntersectionObserver adding .is-visible */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child items */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Slide in from left/right */
.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.is-visible,
.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Hover lift (reusable) */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-md);
}

/* ==========================================================================
   18. MEDIA QUERIES — TABLET (≤1024px)
   ========================================================================== */

@media (max-width: 1024px) {

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

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

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

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

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

  .two-col {
    gap: 2.5rem;
  }

}

/* ==========================================================================
   19. MEDIA QUERIES — MOBILE (≤768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Typography */
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }

  .section {
    padding: 3.5rem 0;
  }

  /* Header */
  .nav-wrapper {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  /* Grids — all to 1 column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reverse > *:first-child,
  .two-col.reverse > *:last-child {
    order: unset;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map {
    min-height: 280px;
  }

  .contact-map iframe,
  .contact-map .map-placeholder {
    min-height: 280px;
  }

  /* Order section — full width buttons */
  .order-platforms {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .order-platforms .btn {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-bottom .footer-legal {
    gap: 1rem;
  }

  /* Page hero */
  .page-hero {
    padding: 2.5rem 0;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.8rem;
  }

  /* Info cards */
  .info-card {
    padding: 1.5rem;
  }

  /* Section header */
  .section-header {
    margin-bottom: 2rem;
  }

}

/* ==========================================================================
   20. MEDIA QUERIES — SMALL MOBILE (≤480px)
   ========================================================================== */

@media (max-width: 480px) {

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    border-top: none;
    padding-top: 0;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .card {
    padding: 1.25rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 60vh;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

}

/* ==========================================================================
   21. REDUCED MOTION PREFERENCE
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg {
    /* Keep opacity for reduced motion, just skip transitions */
  }

}

/* ==========================================================================
   22. PRINT STYLES
   ========================================================================== */

@media print {

  .site-header,
  .hamburger,
  .mobile-nav,
  .hero-actions,
  .order-section,
  .site-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  .page-hero {
    background: #1A3A2A;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

}

/* ==========================================================================
   23. FEATURED / SPECIALS SECTION
   ========================================================================== */

.specials-section {
  background-color: var(--off-white);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.special-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px var(--shadow-md);
}

.special-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background-color: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.special-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.special-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.special-card:hover .special-card-img-wrap img {
  transform: scale(1.06);
}

.special-card-body {
  padding: 1.5rem;
}

.special-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.special-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.special-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.special-card-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
}

.special-card-price .original {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* ==========================================================================
   24. TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  background-color: var(--green-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--green-light);
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--green-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
  display: block;
}

.testimonial-author-source {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* Google / Yelp source badge */
.testimonial-source-badge {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   25. PHOTO GALLERY SECTION
   ========================================================================== */

.gallery-section {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 42, 0);
  transition: background var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  background: rgba(26, 58, 42, 0.35);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   26. SINGLE MENU ITEM PAGE
   ========================================================================== */

.menu-single {
  padding: 3rem 0 5rem;
}

.menu-single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.menu-single-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.menu-single-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-single-info {
  padding-top: 0.5rem;
}

.menu-single-category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.menu-single-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.menu-single-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 1.25rem;
}

.menu-single-desc {
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.menu-single-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: var(--green-pale);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.menu-single-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.menu-single-meta-row .meta-label {
  font-weight: 600;
  color: var(--green-dark);
  min-width: 90px;
}

.menu-single-meta-row .meta-value {
  color: var(--text-muted);
}

.menu-single-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Related items */
.related-items-section {
  background-color: var(--green-pale);
  padding: 4rem 0;
}

/* ==========================================================================
   27. RESERVATION / CATERING SECTION
   ========================================================================== */

.reservation-section {
  background-color: var(--gold-light);
}

.reservation-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  border-top: 4px solid var(--gold);
  max-width: 680px;
  margin: 0 auto;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.reservation-form .form-group.full-width {
  grid-column: 1 / -1;
}

.reservation-form .btn {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* Catering CTA banner */
.catering-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.catering-banner h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.catering-banner p {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1rem;
  margin: 0;
}

/* ==========================================================================
   28. ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background-color: var(--gold);
  color: var(--green-dark);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

.announcement-bar a {
  color: var(--green-dark);
  text-decoration: underline;
  margin-left: 0.5rem;
}

.announcement-bar a:hover {
  color: var(--green-dark);
  opacity: 0.75;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-dark);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.2rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.announcement-close:hover {
  opacity: 1;
}

/* ==========================================================================
   29. WORDPRESS / WPCF7 FORM COMPATIBILITY
   ========================================================================== */

/* Contact Form 7 resets */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background-color: var(--green-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.wpcf7 .wpcf7-response-output {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  border: none;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background-color: var(--green-light);
  color: var(--green-primary);
  border: 1px solid rgba(45, 106, 79, 0.25);
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* WordPress core alignment classes */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }

/* WordPress caption */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ==========================================================================
   30. RESPONSIVE ADDITIONS FOR NEW SECTIONS (≤768px)
   ========================================================================== */

@media (max-width: 768px) {

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .menu-single-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .catering-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .announcement-bar {
    padding: 0.6rem 2.5rem;
    font-size: 0.8rem;
  }

}

@media (max-width: 480px) {

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .reservation-card {
    padding: 1.5rem;
  }

  .catering-banner {
    padding: 1.5rem;
  }

  .menu-single-actions {
    flex-direction: column;
  }

  .menu-single-actions .btn {
    width: 100%;
    justify-content: center;
  }

}
