:root {
  --color-cream: #fff8ec;
  --color-cream-dim: #f5e9d3;
  --color-charcoal: #2b1a12;
  --color-maroon: #7a1f2b;
  --color-maroon-dark: #5c1620;
  --color-saffron: #f2994a;
  --color-saffron-light: #ffb454;
  --color-turmeric: #f2c94c;
  --color-marigold: #ff8c3a;
  --color-white: #ffffff;
  --color-muted: #6b5347;

  --font-heading: 'Fredoka', 'Segoe UI', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 14px;
  --radius-sm: 8px;
  --container-w: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-saffron);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-marigold), var(--color-saffron));
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(122, 31, 43, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(122, 31, 43, 0.32); }
.btn-secondary {
  background: transparent;
  border-color: var(--color-maroon);
  color: var(--color-maroon);
}
.btn-secondary:hover { background: var(--color-maroon); color: var(--color-white); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1rem; }

.hero .btn-secondary { border-color: var(--color-white); color: var(--color-white); }
.hero .btn-secondary:hover { background: var(--color-white); color: var(--color-maroon-dark); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
}
.site-header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled .site-header-bg {
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(43, 26, 18, 0.08);
}

.header-inner {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  gap: 0.15em;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.site-header.scrolled .logo { color: var(--color-maroon-dark); }
.logo-word-accent { color: var(--color-turmeric); }
.site-header.scrolled .logo-word-accent { color: var(--color-saffron); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 101;
}
.nav-toggle .bar {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .nav-toggle .bar { background: var(--color-maroon-dark); }

.main-nav .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}
.main-nav .nav-links li { display: flex; align-items: center; }

.nav-link {
  font-weight: 600;
  padding: 0.4rem 0.1rem;
  color: var(--color-white);
  position: relative;
  transition: color 0.3s ease;
}
.site-header.scrolled .nav-link { color: var(--color-charcoal); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta-row { margin-left: var(--space-2xs); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 180, 84, 0.25), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(242, 201, 76, 0.2), transparent 50%),
    linear-gradient(135deg, rgba(92, 22, 32, 0.92), rgba(122, 31, 43, 0.88) 55%, rgba(255, 140, 58, 0.75));
}
.hero-motif {
  position: absolute;
  width: 260px;
  height: 260px;
  color: rgba(255, 255, 255, 0.15);
  z-index: -1;
  pointer-events: none;
}
.hero-motif-1 { top: -60px; right: -60px; }
.hero-motif-2 { bottom: -40px; left: -50px; width: 200px; height: 200px; }

.hero-content {
  color: var(--color-white);
  max-width: 760px;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}
.hero-title {
  font-size: clamp(3rem, 9vw, 5.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em;
}
.hero-title-accent { color: var(--color-turmeric); }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-turmeric);
  margin: var(--space-2xs) 0 var(--space-md);
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.hero-actions .btn { flex: 0 1 auto; }

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}
.hero-scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-white);
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ SECTION HEADINGS ============ */
.eyebrow {
  display: inline-block;
  color: var(--color-maroon);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: var(--space-2xs);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}
.section-sub {
  color: var(--color-muted);
  max-width: 60ch;
  font-size: 1.05rem;
}
.section-heading { margin-bottom: var(--space-xl); }

/* ============ ABOUT ============ */
.about { padding: var(--space-2xl) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-media {
  position: relative;
  display: grid;
  gap: var(--space-md);
}
.about-photo {
  border-radius: var(--radius);
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(43, 26, 18, 0.18);
}
.about-photo-small {
  height: 160px;
  max-width: 60%;
  margin-left: auto;
  border: 4px solid var(--color-cream);
}

.about-copy p { color: var(--color-charcoal); }
.link-arrow {
  display: inline-block;
  margin-top: var(--space-2xs);
  font-weight: 700;
  color: var(--color-maroon);
  transition: transform 0.2s ease;
}
.link-arrow:hover { transform: translateX(4px); }

/* ============ HIGHLIGHTS ============ */
.highlights { padding: var(--space-xl) 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.highlight-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: 0 8px 30px rgba(122, 31, 43, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(122, 31, 43, 0.14); }
.highlight-icon { font-size: 2.6rem; display: block; margin-bottom: var(--space-sm); }
.highlight-card h3 { font-size: 1.25rem; margin-bottom: var(--space-2xs); color: var(--color-maroon-dark); }
.highlight-card p { color: var(--color-muted); font-size: 0.98rem; }

/* ============ MENU ============ */
.menu-section {
  padding: var(--space-2xl) 0;
  background: var(--color-cream-dim);
}
.sample-note {
  display: inline-block;
  margin-top: var(--space-sm);
  background: rgba(242, 153, 74, 0.16);
  border: 1px solid rgba(242, 153, 74, 0.4);
  color: var(--color-maroon-dark);
  padding: 0.6em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-accordion {
  display: grid;
  gap: var(--space-sm);
  max-width: 820px;
  margin: 0 auto;
}
.menu-category {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(122, 31, 43, 0.06);
}
.menu-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-charcoal);
}
.menu-cat-icon { font-size: 1.4rem; flex: none; }
.menu-cat-name { flex: 1; }
.menu-cat-chevron {
  font-size: 1.6rem;
  color: var(--color-maroon);
  transition: transform 0.25s ease;
  flex: none;
  line-height: 1;
}
.menu-cat-toggle[aria-expanded="true"] .menu-cat-chevron { transform: rotate(90deg); }
.menu-cat-toggle:hover { background: rgba(242, 153, 74, 0.08); }

.menu-cat-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.menu-cat-panel > * { overflow: hidden; }
.menu-category:has(.menu-cat-toggle[aria-expanded="true"]) .menu-cat-panel {
  grid-template-rows: 1fr;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0 1.4rem 1.2rem;
  display: grid;
  gap: 0.7rem;
}
.menu-items li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.98rem;
}
.item-name { color: var(--color-charcoal); font-weight: 600; white-space: nowrap; }
.item-dots {
  flex: 1 1 auto;
  min-width: 0.5rem;
  border-bottom: 2px dotted rgba(107, 83, 71, 0.35);
  height: 0;
  transform: translateY(-0.3em);
}
.item-price { color: var(--color-maroon); font-weight: 700; white-space: nowrap; }

.menu-footnote {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ============ GALLERY ============ */
.gallery { padding: var(--space-2xl) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 26, 18, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(43,26,18,0.25); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.gallery-note {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ============ CONTACT ============ */
.contact { padding: var(--space-2xl) 0; background: var(--color-cream-dim); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-list {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}
.contact-list li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex: none; }
.contact-list strong { display: block; color: var(--color-maroon-dark); margin-bottom: 0.2em; }
.contact-list a:hover { text-decoration: underline; }

.social-row { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-icon:hover { background: var(--color-marigold); transform: translateY(-3px); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 30px rgba(122, 31, 43, 0.1);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-cream-dim);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { color: var(--color-white); margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 32ch; }
.footer-links h3, .footer-contact h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6em; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.75); }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-turmeric); }
.footer-contact p { color: rgba(255,255,255,0.75); margin-bottom: 0.5em; }
.footer-bottom { padding-top: var(--space-md); text-align: center; color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 26, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 640px;
  width: 100%;
  text-align: center;
}
.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  background: var(--color-charcoal);
}
.lightbox-caption { color: var(--color-white); font-size: 1.05rem; }
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-maroon-dark);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md);
  }
  .main-nav .nav-links li { display: block; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem var(--space-2xs);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    -webkit-tap-highlight-color: rgba(255, 180, 84, 0.25);
  }
  .site-header.scrolled .nav-link { color: var(--color-white); }
  .nav-link::after { display: none; }
  .nav-cta-row { margin: var(--space-md) 0 0; }
  .nav-cta-row .btn { width: 100%; }

  .nav-toggle[aria-expanded="true"] .bar { background: var(--color-cream) !important; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-row { justify-content: center; }
  .contact-list li { text-align: left; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items li { flex-wrap: wrap; }
}
