:root {
  --color-primary: #F0891A;
  --color-primary-dark: #CE7112;
  --color-primary-light: #FDDFB8;
  --color-dark: #2B1B12;
  --color-text: #4A3527;
  --color-cream: #FFF8EF;
  --color-cream-2: #FFEFDD;
  --color-white: #FFFFFF;
  --color-green: #3F8F5F;
  --color-star: #F5B301;
  --radius: 16px;
  --shadow: 0 6px 20px rgba(43, 27, 18, 0.08);
  --header-h: 68px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-dark);
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(240, 137, 26, 0.35);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-outline {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-light); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 248, 239, 0.95);
  backdrop-filter: blur(6px);
  border-bottom-color: rgba(43, 27, 18, 0.08);
}
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.85;
}
.brand-word {
  font-family: 'Alfa Slab One', 'Poppins', sans-serif;
  color: var(--color-white);
  transition: color 0.2s ease;
}
.brand-word-sm { font-size: 0.95rem; }
.brand-word-lg { font-size: 1.7rem; margin-top: -2px; }
.brand-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 4px;
  transition: color 0.2s ease;
}
.site-header.scrolled .brand-word,
.site-header.scrolled .brand-sub { color: var(--color-dark); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  padding: 8px 2px;
  transition: color 0.2s ease;
}
.nav-link:hover { opacity: 0.8; }
.site-header.scrolled .nav-link { color: var(--color-dark); }
.site-header.scrolled .nav-link:hover { color: var(--color-primary-dark); opacity: 1; }
.nav-cta {
  background: var(--color-white);
  color: var(--color-dark) !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--color-primary-light); opacity: 1; }
.site-header.scrolled .nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.site-header.scrolled .nav-cta:hover { background: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: background 0.2s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--color-dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg-texture.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(clamp(-110px, -12vh, -50px));
}
.hero-heading-sub {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 39pt;
  color: var(--color-white);
  margin: 0 0 6px;
}
.hero-heading-sub em { font-style: italic; font-weight: 700; }
.hero-heading-main {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 79.5pt;
  line-height: 1.05;
  color: var(--color-white);
  margin: 0;
}
.hero-order-btn {
  display: none;
  margin-top: 28px;
  background: var(--color-white);
  color: var(--color-dark) !important;
  border-color: transparent;
}
.hero-order-btn:hover { background: var(--color-primary-light); }
.hero-photos {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-photos img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-photos-mobile { display: none; }

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--color-cream-2); }
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  margin: 8px 0 36px;
  color: #8A6F5C;
  font-weight: 600;
}

/* ===== Menu item badges ===== */
.badge-new { background: var(--color-green); }
.add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--color-primary-dark); }
.add-btn:active { transform: scale(0.95); }

/* ===== Menu controls ===== */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 2px solid var(--color-primary-light);
  border-radius: 999px;
  padding: 12px 20px;
}
.search-icon {
  display: flex;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.search-bar input {
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  width: 100%;
  background: transparent;
  color: var(--color-text);
}
.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid var(--color-primary-light);
  background: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.chip:hover { background: var(--color-primary-light); }
.chip.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.menu-category { margin-bottom: 40px; }
.menu-category-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--color-primary-light);
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px 20px;
}
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.menu-item-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.menu-item-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light), #FFF3E0);
}
.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bestseller-star {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.bestseller-star svg { width: 26px; height: 26px; }
.menu-item-left { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
.menu-item-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--color-primary-dark); font-size: 1.05rem; }
.menu-item-price-tag { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--color-primary); }
.menu-item-desc { font-size: 0.85rem; color: #8A6F5C; margin: 4px 0 16px; }
.badge-inline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.menu-item-right { width: 100%; margin-top: auto; }
.menu-item-right .add-btn { width: 100%; justify-content: center; }

.side-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.side-item {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-item-name { font-family: 'Poppins', sans-serif; font-weight: 700; }
.side-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.side-item-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}

.no-results { text-align: center; color: #8A6F5C; font-weight: 600; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.gallery-tile {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 30px rgba(43, 27, 18, 0.22);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Gallery Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 12, 8, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

/* ===== Customer Feedback ===== */
.review-spotlight {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.review-spotlight-stars { display: flex; gap: 4px; color: var(--color-star); margin-bottom: 20px; }
.review-spotlight-quote {
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-dark);
  margin: 0 0 22px;
  min-height: 8.5em;
  display: flex;
  align-items: center;
}
.review-spotlight-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-bottom: 28px;
}
.review-spotlight-nav { display: flex; align-items: center; gap: 18px; }
.review-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-primary-light);
  background: var(--color-white);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}
.review-nav-btn:hover { background: var(--color-primary-light); }
.review-nav-btn:active { transform: scale(0.94); }
.review-dots { display: flex; align-items: center; gap: 8px; }
.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.review-dot.active { background: var(--color-primary); transform: scale(1.25); }

/* ===== Map ===== */
.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.map-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--color-white);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ===== Info cards ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  text-align: center;
}
.info-icon { display: flex; justify-content: center; color: var(--color-primary-dark); margin-bottom: 10px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.info-card p { margin: 0; font-size: 0.92rem; }
.info-card a { color: var(--color-primary-dark); font-weight: 700; }

.order-icon { display: flex; color: var(--color-primary-dark); }

/* ===== About ===== */
.about-section { background: var(--color-dark); }
.about-inner { max-width: 720px; text-align: center; }
.about-section .section-title { color: var(--color-white); }
.about-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.about-text { color: #E8D9CC; font-size: 1.02rem; margin-top: 18px; }

/* ===== Footer ===== */
.site-footer { background: #1E130C; padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { height: 56px; border-radius: 8px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #E8D9CC; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--color-primary); }
.footer-fb { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; }
.footer-fb:hover { color: var(--color-primary-light); }
.footer-copy { color: #A88F7E; font-size: 0.8rem; margin: 0; }

/* ===== Floating order button ===== */
.floating-order {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(43, 27, 18, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-order:hover { background: var(--color-primary-dark); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-green);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-cream);
}

/* ===== Cart Drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 12, 8, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: min(400px, 100vw);
  background: var(--color-cream);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(43, 27, 18, 0.1);
}
.cart-drawer-header h3 { font-size: 1.2rem; }
.cart-close {
  border: none;
  background: none;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  padding: 4px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-empty { color: #8A6F5C; text-align: center; margin-top: 40px; font-weight: 600; }

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(43, 27, 18, 0.08);
}
.cart-line-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; }
.cart-line-egg { font-size: 0.78rem; color: var(--color-primary); margin: 2px 0; }
.cart-line-price { font-size: 0.8rem; color: #8A6F5C; }
.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-primary-light);
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--color-primary-light); }
.qty-value { min-width: 18px; text-align: center; font-weight: 700; }
.cart-line-total {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(43, 27, 18, 0.1);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.cart-checkout { width: 100%; }
.cart-checkout:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-hint { font-size: 0.78rem; color: #8A6F5C; text-align: center; margin: 10px 0 0; }

/* ===== Egg Style Modal ===== */
.egg-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: rgba(20, 12, 8, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.egg-modal.open { opacity: 1; pointer-events: auto; }
.egg-modal-box {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}
.egg-modal-box h3 { font-size: 1.15rem; margin-bottom: 6px; }
.egg-modal-box p { margin: 0 0 18px; color: var(--color-text); font-size: 0.92rem; }
.egg-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.egg-modal-actions .btn { width: 100%; }
.egg-modal-cancel {
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  z-index: 500;
  transform: translate(-50%, 12px);
  background: var(--color-dark);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ===== Mobile ===== */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(43,27,18,0.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav.open .nav-link { color: var(--color-dark); padding: 12px 6px; border-radius: 10px; }
  .main-nav.open .nav-link:hover { background: var(--color-primary-light); }
  .main-nav.open .nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    text-align: center;
    margin-top: 6px;
  }
  .hero-inner { padding: 90px 20px; }
  .hero-heading-sub { font-size: clamp(1.1rem, 4.2vw, 20pt); }
  .hero-heading-main { font-size: clamp(2.1rem, 11vw, 44pt); }
  .hero-order-btn { display: inline-flex; }
  .floating-order span:last-child { display: none; }
  .floating-order { padding: 16px; border-radius: 50%; }
  .floating-order .order-icon svg { width: 22px; height: 22px; }
}

@media (max-width: 640px) {
  .hero-photos { display: none; }
  .hero-photos-mobile {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .hero-photos-mobile img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 600px) {
  .menu-controls { flex-direction: row; align-items: center; }
  .search-bar { flex: 1; }
}
