/* ============================================
   NEW GREEK — MAIN STYLESHEET (LIGHT THEME)
   Fusion Creative | 2026
   ============================================ */

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

:root {
  --bg:           #F0EAE0;
  --bg-surface:   #E8E1D6;
  --bg-card:      #FAF6F1;
  --bg-elevated:  #F5EFE6;

  --gold:         #B8892A;
  --gold-light:   #D4A843;
  --gold-dim:     rgba(184,137,42,0.15);
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C96A 100%);

  --text:         #1D1D1F;
  --text-secondary: #3D3D3F;
  --text-muted:   #6E6E73;
  --text-faint:   #AEAEB2;

  --border:       rgba(0,0,0,0.08);
  --border-md:    rgba(0,0,0,0.12);
  --border-gold:  rgba(184,137,42,0.3);

  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.11);
  --shadow-xl:    0 24px 64px rgba(0,0,0,0.13);
  --shadow-gold:  0 8px 32px rgba(184,137,42,0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-full:  9999px;

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

  --max-width:    1160px;
  --nav-height:   68px;
}

/* --- Greek colours --- */
:root {
  --greek-blue: #0D5EAF;
  --greek-blue-light: #4A90D9;
  --greek-blue-dim: rgba(13,94,175,0.08);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.75; font-weight: 500; }

.text-gold { color: var(--gold); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* --- Divider --- */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--greek-blue), var(--gold));
  border-radius: 2px;
  margin: 18px 0;
}
.divider-center { margin: 18px auto; }

/* --- Section Label --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,137,42,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--text);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: #2D2D2F;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-md);
}
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo-img:hover img { opacity: 0.75; }
.footer-brand .nav-logo-img img { height: 52px; }

/* Hero container — flex row: content left, card right */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Mobile info pills — hidden on desktop, shown on mobile */
.hero-mobile-info {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hmi-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hmi-open { color: #2E7D51; }

/* Floating info pill (unused) */
.hero-float-pill {
  position: absolute;
  right: 5%;
  top: calc(50% + 210px);
  background: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  animation: floatPill 4s ease-in-out infinite;
}
.pill-section {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-divider {
  width: 1px;
  height: 28px;
  background: var(--border-md);
  flex-shrink: 0;
}
.hero-float-pill .pill-icon { font-size: 0.9rem; line-height: 1; }
.hero-float-pill .pill-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.hero-float-pill .pill-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.2;
}
.hms-dot {
  width: 7px; height: 7px;
  background: #34C759;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(52,199,89,0.2);
}
@keyframes floatPill {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hero-float-card {
  animation: floatCard 5s ease-in-out infinite;
}

/* Dish card — price chip, no button */
.dish-price-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--gold-dim);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.dish-order-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: gap var(--transition);
  margin-top: 4px;
}
.dish-order-link:hover { gap: 10px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.nav-links a:hover {
  background: rgba(255,255,255,0.95);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
}
.nav-links a.active {
  background: #FFFFFF;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,0,0,0.1);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px 28px 24px;
  z-index: 99;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
/* Dark overlay — white text over food photography */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.42);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
/* Desktop/mobile hero image swap */
.hero-img-mobile { display: none; }
@media (max-width: 768px) {
  .hero-img-desktop { display: none; }
  .hero-img-mobile { display: block; }
}
/* No overlay on hero-bg — gradient lives on .hero itself below */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-content h1 {
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-content h1 em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Ghost button + halal badge adjusted for dark hero */
.hero-content .btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.hero-content .btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}
.hero-content .halal-badge-sm {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

/* Floating card */
.hero-float-card {
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 300px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: 2;
  position: relative;
}
.hero-float-card .hf-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-float-card .hf-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-float-card .hf-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-float-card .hf-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
/* Dish cycling animation */
.hf-cycling {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hf-cycling.hf-exit {
  opacity: 0;
  transform: translateY(-8px);
}
.hf-cycling.hf-enter {
  opacity: 0;
  transform: translateY(8px);
  animation: hfFadeIn 0.4s ease forwards;
}
@keyframes hfFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Progress dots */
.hf-dots {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}
.hf-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border-md);
  transition: all 0.3s ease;
}
.hf-dot.active {
  width: 16px;
  border-radius: 3px;
  background: var(--gold);
}

.hf-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.hf-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hf-rating-stars {
  font-size: 0.75rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.hf-rating-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.hf-rating-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F0FAF4;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: #2E7D51;
  margin-bottom: 20px;
}
.hero-float-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #34C759;
  border-radius: 50%;
}

/* Halal badge (small, homepage only) */
.halal-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ============================================
   DISH CARDS
   ============================================ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.dish-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.dish-card-img-placeholder {
  width: 100%; height: 180px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px dashed var(--border-md);
}
.dish-card-img {
  width: 100%; height: 200px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
}
.dish-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dish-card:hover .dish-card-img img {
  transform: scale(1.04);
}
.dish-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ============================================
   ABOUT SNIPPET
   ============================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snippet-img .img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px dashed var(--border-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-snippet-img .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-snippet-text h2 { margin-bottom: 20px; }
.about-snippet-text p { margin-bottom: 18px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--bg-surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.review-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-author::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ============================================
   ORDER SECTION
   ============================================ */
.order-section {
  text-align: center;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order-section h2 { margin-bottom: 14px; }
.order-section p  { margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; }
.order-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.delivery-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
}
.menu-hero h1 { font-style: italic; }
.menu-hero p  { max-width: 500px; margin: 18px auto 0; }

.menu-sticky-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  overflow-x: auto;
}
.menu-sticky-nav::-webkit-scrollbar { height: 0; }
.menu-sticky-nav-inner {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
}
.menu-cat-link {
  padding: 16px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.menu-cat-link:hover,
.menu-cat-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-section {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}
.menu-section:last-of-type { border-bottom: none; }
.menu-section-header { margin-bottom: 44px; }
.menu-section-header h2 { font-style: italic; }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.menu-item {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.menu-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
}
.menu-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.menu-order-bar {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 180px 0 100px;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 60%);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,94,175,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.about-hero-content h1 { font-style: italic; margin-bottom: 20px; }
.about-hero-content p  { font-size: 1.1rem; max-width: 560px; }

.about-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 100px 0;
}
.about-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  align-self: start;
}
.about-sidebar-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px dashed var(--border-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.about-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.about-main p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
  color: var(--text-muted);
}
.about-main p.lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 44px 0;
}
.about-value {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
}
.about-value h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.about-value p { font-size: 0.86rem; margin-bottom: 0; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,94,175,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gallery-hero h1 { font-style: italic; }
.gallery-hero p  { max-width: 500px; margin: 18px auto 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 56px 0;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-surface);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 2; }

/* ============================================
   FIND US PAGE
   ============================================ */
.find-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 100%);
}
.find-hero h1 { font-style: italic; }
.find-hero p  { max-width: 500px; margin: 18px auto 0; }

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.find-detail {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.find-detail:last-child { border-bottom: none; }
.find-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
  padding-top: 2px;
}
.find-detail-value { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 5px 0; font-size: 0.87rem; color: var(--text-muted); }
.hours-table td:first-child { color: var(--text); font-weight: 500; width: 120px; }
.map-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%; height: 100%; min-height: 400px;
  display: block;
  filter: grayscale(30%) brightness(1.05);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.delivery-link {
  display: block;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.delivery-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.delivery-link .name { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.delivery-link .sub  { font-size: 0.74rem; color: var(--text-muted); }

/* ============================================
   BLOG
   ============================================ */
.blog-post-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, #FFFBF3 0%, #FFFFFF 100%);
}
.blog-post-hero .blog-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.blog-post-hero h1 { max-width: 800px; font-style: italic; }
.blog-post-body {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 28px;
}
.blog-post-body p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 26px; }
.blog-post-body h2 { font-size: 1.8rem; font-style: italic; margin: 48px 0 18px; color: var(--text); }
.blog-post-body h3 { font-size: 1.3rem; margin: 36px 0 14px; color: var(--text); }
.blog-post-cta {
  background: linear-gradient(135deg, #FFFBF3 0%, #FFF5E0 100%);
  border: 1px solid var(--border-gold);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.blog-post-cta p { font-size: 1.05rem; color: var(--text); margin-bottom: 22px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-surface);
  border-top: none;
  padding: 64px 0 32px;
  position: relative;
}
/* Greek meander border top of footer */
.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='20' viewBox='0 0 48 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v4H4v4h40v4H4v4h44v4H0V0z' fill='%230D5EAF' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 48px 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.3rem; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; max-width: 240px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  color: var(--text-muted);
}
.footer-social a:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: var(--text-faint); }

/* Greek flag bottom bar */
.footer-bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--greek-blue) 0%, var(--greek-blue) 33%, #fff 33%, #fff 66%, var(--greek-blue) 66%, var(--greek-blue) 100%);
  border-radius: 2px;
  opacity: 0.5;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-float-pill  { display: none; }
  .hero-float-card  { display: none; }       /* desktop card hidden on mobile */
  .hero-mobile-info { display: flex; }        /* mobile pills shown instead */
  .hf-dish-body { display: none; }

  .hero {
    overflow: visible;
    padding-bottom: 60px;
    align-items: flex-start;
  }

  /* More top padding on mobile hero-content to clear the fixed nav */
  .hero-content {
    padding-top: calc(var(--nav-height) + 16px);
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-body { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .find-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 62px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content h1 { font-size: 2.6rem; }
  .dishes-grid { grid-template-columns: 1fr; }
  .about-snippet { grid-template-columns: 1fr; gap: 40px; }
  .about-snippet-img { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 72px 0; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .order-buttons { flex-direction: column; align-items: center; }
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ── Instagram Marquee ── */
.insta-section {
  padding: 80px 0 0;
  overflow: hidden;
  border-top: none;
  position: relative;
}
/* Greek key pattern top border on Instagram section */
.insta-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='20' viewBox='0 0 48 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v4H4v4h40v4H4v4h44v4H0V0z' fill='%230D5EAF' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 48px 20px;
}
.insta-marquee {
  width: 100%;
  overflow: hidden;
  padding: 32px 0 0;
}
.insta-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: insta-scroll 40s linear infinite;
}
.insta-thumb {
  display: block;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.insta-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}
@keyframes insta-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .insta-section { padding: 60px 0 0; }
  .insta-thumb { width: 160px; height: 160px; }
  .insta-track { animation-duration: 30s; }
}
@media (max-width: 480px) {
  .insta-thumb { width: 130px; height: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .insta-track { animation: none; }
}

