/* ==========================================
   AXUM ETHIOPIAN RESTAURANT - style.css
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  --gold:       #C9953A;
  --gold-light: #E8B86D;
  --gold-dark:  #8B6520;
  --red:        #8B1A1A;
  --red-light:  #B22222;
  --cream:      #FAF6EE;
  --cream-dark: #F0E8D8;
  --brown:      #2C1810;
  --brown-mid:  #4A2C1A;
  --text-dark:  #1A0F08;
  --text-mid:   #5C3D2A;
  --text-light: #8B6B50;
  --white:      #FFFDF9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;

  --shadow-sm:  0 2px 8px rgba(44,24,16,0.12);
  --shadow-md:  0 8px 32px rgba(44,24,16,0.18);
  --shadow-lg:  0 20px 60px rgba(44,24,16,0.25);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === DECORATIVE ELEMENTS === */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.divider-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 15, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.nav-logo span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-order-btn {
  background: var(--gold) !important;
  color: var(--brown) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition) !important;
}
.nav-order-btn:hover { background: var(--gold-light) !important; }
.nav-order-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(26,15,8,0.98);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(201,149,58,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border: none; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0);  }
}

/* Ethiopian cross / geometric overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,149,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: heroFade 1.2s ease-out 0.3s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown);
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
}
.btn-dark:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Delivery buttons */
.order-section {
  padding: 5rem 2rem;
  background: var(--brown);
  text-align: center;
}

.order-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.order-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.delivery-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-doordash {
  background: #EB1700;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
}
.btn-doordash:hover {
  background: #C41200;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(235,23,0,0.35);
}

.btn-grubhub {
  background: #F63440;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
}
.btn-grubhub:hover {
  background: #d42530;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(246,52,64,0.35);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* === ABOUT STRIP === */
.about-strip {
  background: var(--cream-dark);
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,149,58,0.25);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.strip-item i {
  color: var(--gold);
  font-size: 1rem;
}

/* === SECTIONS === */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--brown);
  margin-top: 0.5rem;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: unset;  /* ← removes forced ratio so full image shows */
  object-fit: contain;  /* ← fits entire image without cropping */
  background: var(--cream-dark);
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

/* Placeholder when no image */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.img-placeholder i { font-size: 2rem; opacity: 0.5; }

.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--brown);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-accent-box .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-accent-box .label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--brown);
  margin: 0.7rem 0 1.2rem;
}
.about-text p {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.1em;
}

/* === FEATURED DISHES === */
.bg-dark {
  background: var(--brown);
}
.bg-dark .section-header h2 { color: var(--white); }
.bg-dark .section-label { color: var(--gold-light); }

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

.dish-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,149,58,0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,149,58,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.dish-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--brown-mid);
}

.dish-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(74,44,26,0.8), rgba(44,24,16,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,149,58,0.2);
}
.dish-img-placeholder i { font-size: 1.8rem; opacity: 0.4; }

.dish-info {
  padding: 1.4rem;
}
.dish-tag {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.dish-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.dish-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-style: italic;
}
.dish-price {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* === HOURS & LOCATION === */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(201,149,58,0.2);
  border-radius: 2px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  color: var(--text-mid);
}
.hours-list li:last-child { border: none; }
.hours-list .day { font-weight: 500; color: var(--text-dark); }
.hours-list .closed { color: var(--text-light); font-style: italic; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border-radius: 2px;
  border: 1px dashed var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.map-placeholder i { font-size: 1.8rem; opacity: 0.6; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === GALLERY STRIP === */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
  overflow: hidden;
}

.gallery-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* ← no cropping */
  background: var(--brown);   /* ← fills empty space with dark color */
}

.gallery-cell-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--gold);
  opacity: 0.7;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-right: 1px solid rgba(201,149,58,0.15);
  transition: opacity 0.35s;
}
.gallery-cell-placeholder i { font-size: 1.5rem; }
.gallery-cell:hover .gallery-cell-placeholder { opacity: 1; }
.gallery-cell:hover img { transform: scale(1.08); }

/* === FOOTER === */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,149,58,0.3), transparent);
  margin: 1.5rem 0;
}

.footer-bottom {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--brown);
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 900;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 0.8rem;
}

/* === MENU PAGE === */
.menu-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.menu-category-header h2 {
  font-size: 1.9rem;
  color: var(--brown);
  white-space: nowrap;
}
.menu-category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), transparent);
}

/* Sub-groups within a category (e.g. the 4 drink groups inside "Drinks & Extras") */
.menu-subgroup {
  margin-bottom: 2.2rem;
}
.menu-subgroup:last-child {
  margin-bottom: 0;
}
.menu-subgroup-header {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,149,58,0.25);
}
.menu-subgroup-header .qualifier {
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  color: var(--text-light);
  font-size: 0.78rem;
}

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,149,58,0.15);
  transition: background var(--transition);
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { padding-left: 0.5rem; }

.menu-item-left { flex: 1; }

/* === FEATURED MENU ITEMS (items with a photo get a bigger, full-width card) === */
.menu-item-featured {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1.6rem 0;
}
.menu-item-featured:hover { padding-left: 0; }

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-photo {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  margin-top: 0.4rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}
.menu-item-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: normal;
  line-height: 1.5;
}
.menu-item-badges {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.badge-vegan  { background: #e8f5e9; color: #2e7d32; }
.badge-spicy  { background: #fbe9e7; color: #c62828; }
.badge-gf     { background: #e8eaf6; color: #283593; }
.badge-popular{ background: #fff8e1; color: #f57f17; }
.badge-chef   { background: var(--brown); color: var(--gold-light); }
.badge-chef i { margin-right: 0.15em; }

.menu-item-price {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}
.menu-item-price.tbd {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-light);
}

.menu-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 3rem 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.menu-note.not-italic {
  font-style: normal;
}

/* === DRINKS & EXTRAS — compact override ===
   Scoped to .drinks-category only, so the rest of the menu keeps its normal spacing. */
.drinks-category .menu-subgroup {
  margin-bottom: 1.1rem;
}
.drinks-category .menu-subgroup-header {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
  color: var(--brown);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.3rem;
}
.drinks-category .menu-subgroup-header .qualifier {
  font-size: 0.85rem;
}
.drinks-category .menu-item {
  padding: 0.35rem 0;
  border-bottom: none;
}
.drinks-category .menu-item:hover {
  padding-left: 0;
}
.drinks-category .menu-item-desc {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-box { right: 0; }

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

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

  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip .gallery-cell:nth-child(n+4) { display: none; }
}

@media (max-width: 600px) {
  .about-strip { gap: 1.5rem; }
  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .gallery-strip .gallery-cell:nth-child(n+3) { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .delivery-buttons { flex-direction: column; align-items: center; }

  .menu-item-photo { max-height: 220px; }
}
