/* ============================================
   NOVA CAFE - Warm & Elegant Cafe
   Palette: cream, bronze, rich brown
   ============================================ */

:root {
  /* Colors - dark coffee-brown theme */
  --bg: #2B1E17;
  --bg-warm: #3E2C23;
  --bg-deep: #231610;
  --cream: #F5EDE6;
  --ink: #F5EDE6;
  --ink-soft: #D6C2B5;
  --ink-mute: rgba(214, 194, 181, 0.75);
  --bronze: #C49A6C;
  --bronze-deep: #B08050;
  --brown: #5c3a1e;
  --brown-deep: #3d2613;
  --gold: #C49A6C;
  --line: rgba(196, 154, 108, 0.18);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Cormorant Infant', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max: 1320px;
  --section-max: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color-scheme: dark;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

::selection { background: var(--bronze); color: var(--cream); }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--bg-deep);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem var(--pad);
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
}
.topbar-divider { opacity: 0.4; }
@media (max-width: 600px) {
  .topbar-divider, .topbar-inner span:last-child { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 30, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nav.scrolled {
  background: #3E2C23;
  border-bottom-color: transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-deep);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(196, 154, 108, 0.2);
  display: block;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .brand-logo { height: 38px; width: 38px; }
}
.brand-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.nav.scrolled .brand-name {
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  color: rgba(245, 237, 230, 0.75);
  font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: rgba(245, 237, 230, 0.75); }
.nav.scrolled .nav-links a:hover { color: var(--cream); }

.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-cta:hover {
  background: var(--bronze);
  color: #1a1008;
}
.nav.scrolled .nav-cta {
  border-color: rgba(246, 239, 228, 0.6);
  color: var(--cream);
}
.nav.scrolled .nav-cta:hover {
  background: var(--cream);
  color: #3E2C23;
  border-color: var(--cream);
}

.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
}
.nav.scrolled .nav-burger span { background: var(--cream); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #3E2C23;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  color: rgba(246, 239, 228, 0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--cream); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(246, 239, 228, 0.5);
  border-radius: 100px;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.mobile-menu .mobile-cta:hover {
  background: var(--cream);
  color: #3E2C23;
  border-color: var(--cream);
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem var(--pad);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a0f08;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('images/branded cup NOVA.png');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.92;
  animation: heroPan 24s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}

/* Keep NOVA cups visible and centered on portrait phones - calmer Ken Burns */
@media (max-width: 640px) {
  .hero-image {
    background-position: center 40%;
    animation-duration: 30s;
  }
  @keyframes heroPan {
    from { transform: scale(1.02) translateX(0); }
    to   { transform: scale(1.06) translateX(-0.8%); }
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; transform: none; }
  .hero-content { animation: none; }
  .hero-word { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(26, 15, 8, 0.08) 0%, rgba(26, 15, 8, 0.48) 55%, rgba(15, 8, 4, 0.82) 100%),
    linear-gradient(180deg, rgba(15, 8, 4, 0.52) 0%, rgba(26, 15, 8, 0.18) 38%, rgba(26, 15, 8, 0.38) 72%, rgba(15, 8, 4, 0.75) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  animation: heroFade 1.4s ease-out;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246, 239, 228, 0.65);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-eyebrow .line {
  width: 60px;
  height: 1px;
  background: var(--bronze);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-word {
  display: inline-block;
  margin: 0 0.12em;
  animation: wordReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-word:nth-child(1) { animation-delay: 0.3s; }
.hero-word:nth-child(2) { animation-delay: 0.45s; }
.hero-word:nth-child(3) { animation-delay: 0.6s; }
.hero-word:nth-child(4) { animation-delay: 0.75s; }

.hero-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--bronze);
}

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(246, 239, 228, 0.78);
  line-height: 1.75;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 1s both;
}

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

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--bronze);
  color: #1a1008;
  border-color: var(--bronze);
}
.btn-primary:hover {
  background: #d4aa7a;
  border-color: #d4aa7a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 230, 0.45);
}
.btn-ghost:hover {
  background: rgba(245, 237, 230, 0.1);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: #2B1E17;
}
.btn-light:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.btn-full { width: 100%; justify-content: center; }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.4s both;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--cream);
  font-weight: 500;
}
.meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246, 239, 228, 0.5);
}
.meta-sep {
  width: 1px;
  height: 30px;
  background: rgba(246, 239, 228, 0.2);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--bg-warm);
  color: var(--ink-soft);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
}
.marquee-track .dot {
  color: var(--bronze);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 300;
}

/* ============================================
   STORY
   ============================================ */
.story {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 5rem var(--pad); /* 80px desktop */
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img-frame { aspect-ratio: 3 / 2; }
}

.story-image { position: relative; }
.story-img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.story-img {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(60, 38, 19, 0.05), rgba(26, 15, 8, 0.25)),
    url('images/COFFEE BREWER.png');
  background-size: cover;
  background-position: center 65%;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.story-img-frame:hover .story-img { transform: scale(1.04); }
.story-img-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(43, 30, 23, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.story-img-tag span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--bronze);
}

.story-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .story-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
}

.pillar { display: flex; flex-direction: column; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 0.6rem;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  background: var(--bg-warm);
  padding: 5rem var(--pad);
  position: relative;
}
.menu::before, .menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}
.menu::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
.menu::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.menu-header {
  max-width: var(--section-max);
  margin: 0 auto 3rem;
  text-align: center;
}
.menu-intro {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-tabs {
  max-width: var(--section-max);
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  background: var(--bg);
  border-radius: 100px;
  width: fit-content;
  border: 1px solid var(--line);
}
.menu-tab {
  padding: 0.7rem 1.3rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active {
  background: var(--bronze);
  color: #1a1008;
}

@media (max-width: 720px) {
  .menu-tabs {
    border-radius: 12px;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
}

.menu-content {
  max-width: var(--section-max);
  margin: 0 auto;
}
.menu-category {
  display: none;
  animation: fadeIn 0.5s ease;
}
.menu-category.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-cat-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--bronze);
  text-align: center;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.menu-cat-desc {
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) and (min-width: 561px) {
  .menu-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .menu-items { grid-template-columns: 1fr; }
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(196, 154, 108, 0.35);
}

.menu-item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
  flex-shrink: 0;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.06);
}

/* Graceful fallback if image fails to load */
.menu-item-img.img-fallback {
  background:
    radial-gradient(ellipse at 30% 30%, var(--bronze) 0%, transparent 60%),
    linear-gradient(135deg, var(--bronze) 0%, var(--brown) 100%);
}
.menu-item-img.img-fallback::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--cream);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1;
}

.menu-item-popular {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--bronze);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.menu-item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.1rem;
  gap: 0.35rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  line-height: 1.2;
}
.menu-item-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bronze);
  color: var(--cream);
  padding: 0.18rem 0.48rem;
  border-radius: 100px;
}
.menu-item-tag.veg { background: #6b8e4e; }
.menu-item-tag.spicy { background: #b8552c; }
.menu-item-tag.new { background: var(--brown-deep); }
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.55;
  flex: 1;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bronze);
  white-space: nowrap;
}

.menu-foot {
  max-width: var(--section-max);
  margin: 3rem auto 0;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.menu-foot p { margin: 0.3rem 0; }

/* ============================================
   SIGNATURE DRINKS - Cold Bar trio
   ============================================ */
.signatures {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 5rem var(--pad);
  position: relative;
}

.signatures-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.signatures-intro {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.signatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 960px) and (min-width: 601px) {
  .signatures-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .signatures-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .signatures { padding-top: 3.125rem; padding-bottom: 3.125rem; }
  .signatures-header { margin-bottom: 2rem; }
}

.sig-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(62, 44, 35, 0.65) 0%, rgba(35, 22, 16, 0.85) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}
.sig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 154, 108, 0.4);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.sig-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.sig-card:hover .sig-card-img { transform: scale(1.04); }
.sig-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 8, 4, 0.55) 100%);
  pointer-events: none;
}

.sig-img-matcha     { background-image: url('images/new images/matcha nova.jpeg'); background-position: center 35%; }
.sig-img-strawmatcha{ background-image: url('images/new images/strawberry matcha.jpeg'); background-position: center 35%; }
.sig-img-berry      { background-image: url('images/new images/strawberry drink nova.jpeg'); background-position: center 40%; }

.sig-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sig-card-tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.sig-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sig-card-body p {
  font-size: 0.93rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* ============================================
   FEATURE STRIP
   ============================================ */
.feature {
  background:
    linear-gradient(135deg, rgba(15, 8, 4, 0.82) 0%, rgba(43, 30, 23, 0.70) 60%, rgba(15, 8, 4, 0.88) 100%),
    url('images/new images/hot coffee branded.png');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  color: var(--cream);
  padding: 5rem var(--pad);
  position: relative;
  overflow: hidden;
}

@media (max-width: 880px) {
  .feature { background-attachment: scroll; }
}
.feature-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .feature-inner { grid-template-columns: 1fr; text-align: center; }
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  color: var(--cream);
}
.feature-text p {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (max-width: 880px) {
  .feature-text p { margin-left: auto; margin-right: auto; }
}

.feature-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.feature-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--bronze) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.6;
}
.feature-arabic {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 0 60px rgba(201, 168, 106, 0.4);
}

/* ============================================
   BRAND STRIP - "Take Nova with you"
   ============================================ */
.brandstrip {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  padding: 6rem var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(196, 154, 108, 0.12);
  border-bottom: 1px solid rgba(196, 154, 108, 0.12);
}
.brandstrip::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.16) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(8px);
}
.brandstrip-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .brandstrip { padding: 4rem var(--pad); }
  .brandstrip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.brandstrip-image {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(196, 154, 108, 0.12);
}
.brandstrip-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 8, 4, 0.05), rgba(15, 8, 4, 0.25)),
    url('images/COFFEE SPILLING.jpg') center / cover no-repeat;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brandstrip-image:hover .brandstrip-img { transform: scale(1.05); }
.brandstrip-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(15, 8, 4, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 154, 108, 0.3);
}

.brandstrip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  color: var(--cream);
}
.brandstrip-text h3 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 300;
}
.brandstrip-text p {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.brandstrip-list {
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.brandstrip-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.brandstrip-list li:last-child { border-bottom: none; }
.brandstrip-list li span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.95rem;
  min-width: 1.6rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 5rem var(--pad);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }
}

.g {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.g1 { grid-column: span 2; grid-row: span 2; }
.g2 { grid-column: span 2; }
.g3 { grid-column: span 2; }
.g4 { grid-column: span 2; }
.g5 { grid-column: span 1; }
.g6 { grid-column: span 1; }

@media (max-width: 900px) {
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g2, .g3, .g4 { grid-column: span 1; }
  .g5 { grid-column: span 1; }
  .g6 { grid-column: span 1; }
}

.g-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Nova Cafe exterior - actual photo */
.g1 .g-img {
  background-image: url('images/nova-exterior.jpeg');
  background-position: center top;
}
/* Editorial flat-lay - portafilters, beans, latte art */
.g2 .g-img {
  background-image: url('images/new images/coffee prepare.jpg');
  background-position: center center;
}
/* Espresso shot in beans - overhead texture */
.g3 .g-img {
  background-image: url('images/new images/coffee brewed.png');
  background-position: center center;
}
/* Coffee farm Ethiopia */
.g4 .g-img {
  background-image: url('images/coffe farm ethiopia.jpg');
  background-position: center 25%;
}
/* NOVA cup with laptop on bench - slow mornings */
.g5 .g-img {
  background-image: url('images/nova cup laptop.png');
  background-position: 60% center;
}
/* NOVA splash - branded portrait, fits narrow cell */
.g6 .g-img {
  background-image: url('images/new images/nova splash coffee.png');
  background-position: center 60%;
}

.g-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(26, 15, 8, 0.45));
  transition: opacity 0.5s ease;
  opacity: 1;
}
.g:hover .g-img::after {
  opacity: 0.6;
}

.g:hover .g-img { transform: scale(1.05); }

.g figcaption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  z-index: 2;
  opacity: 0.95;
  transition: all 0.4s ease;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  letter-spacing: 0.01em;
}
.g:hover figcaption {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  background: var(--bg-deep);
  padding: 5rem var(--pad);
  position: relative;
}
.visit-grid {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.visit-info .section-title { margin-bottom: 2rem; }

.visit-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.visit-block:last-child { border-bottom: none; }
.visit-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.visit-block p, .visit-block a {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.visit-block a:hover { color: var(--bronze); }

.visit-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.visit-contact-line:last-child { margin-bottom: 0; }

.visit-map {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.visit-map iframe {
  display: block;
  width: 100%;
}

.visit-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.65rem 1.3rem;
  font-size: 0.84rem;
}

.hours {
  list-style: none;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: none; }
.hours span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bronze);
  font-size: 1.05rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.socials a {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.socials a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.visit-form-wrap {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .visit-form-wrap { position: static; }
}

.visit-form {
  background: var(--bg-warm);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.visit-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.form-sub {
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row:nth-of-type(2) { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 500px) {
  .form-row, .form-row:nth-of-type(2) { grid-template-columns: 1fr; }
}

.visit-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.visit-form label.full { margin-bottom: 1.5rem; }
.visit-form label span {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.visit-form input,
.visit-form select,
.visit-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.visit-form input::placeholder,
.visit-form textarea::placeholder { color: rgba(214, 194, 181, 0.4); }
.visit-form input:focus,
.visit-form select:focus,
.visit-form textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.15);
}
.visit-form textarea { resize: vertical; font-family: var(--font-body); }
.visit-form select option { background: var(--bg-warm); color: var(--ink); }

.form-foot {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* ============================================
   RESPONSIVE SECTION SPACING
   ============================================ */
@media (max-width: 768px) {
  .story,
  .menu,
  .feature,
  .gallery,
  .visit {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .story-grid { gap: 2.5rem; }
  .menu-header { margin-bottom: 2rem; }
  .gallery-header { margin-bottom: 2rem; }
  .menu-foot { margin-top: 2rem; }
  .story-pillars { margin-top: 1.5rem; padding-top: 1.5rem; }

  /* Hero - reduce oversized bottom margin on small screens */
  .hero-eyebrow { margin-bottom: 1.1rem; }
  .hero-sub { margin-bottom: 1.75rem; }
  .hero-actions { margin-bottom: 2rem; }
  .hero-meta { gap: 1.25rem; }

  /* Feature - constrain large decorative text */
  .feature-arabic { font-size: clamp(4rem, 20vw, 8rem); }
}

/* ============================================
   SMALL PHONE - Hero breathing room & motion
   ============================================ */
@media (max-width: 480px) {
  /* Hero: stack CTAs vertically, full-width up to 280px */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Stats row: smaller numerals, tighter gap */
  .hero-meta { gap: 0.85rem; }
  .meta-num { font-size: 1.3rem; }
  .meta-sep { height: 22px; }
  .meta-label { font-size: 0.66rem; }

  /* Eyebrow lines: shorter on tiny screens */
  .hero-eyebrow .line { width: 36px; }

  /* Give the hero a touch more top padding so content isn't flush */
  .hero { padding-top: 3rem; }

  /* Marquee: much slower on mobile for comfortable reading */
  .marquee-track { animation-duration: 75s; }
}

/* Gallery - single column on very narrow screens */
@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g1, .g2, .g3, .g4, .g5, .g6 {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #3E2C23;
  color: var(--ink-soft);
  padding: 4rem var(--pad) 0;
}
.footer-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer { padding-top: 3rem; }
}

.footer-logo { mix-blend-mode: normal; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p {
  margin-top: 1rem;
  max-width: 300px;
  color: rgba(250, 245, 236, 0.55);
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(250, 245, 236, 0.6);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--bronze);
  color: var(--cream);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-self: start;
  padding-top: 0.25rem;
}
@media (max-width: 500px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.footer-cols h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
}
.footer-cols a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 245, 236, 0.6);
  padding: 0.3rem 0;
  transition: color 0.25s ease;
  line-height: 1.5;
}
.footer-cols a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 245, 236, 0.3);
  letter-spacing: 0.04em;
}
.arabic-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(201, 168, 106, 0.5);
  letter-spacing: 0;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

/* Sections offset so sticky nav doesn't overlap anchor targets */
#story, #menu, #gallery, #visit, #togo, #signatures {
  scroll-margin-top: 5rem;
}

/* Elements that fade up on scroll */
.story-text, .story-image, .menu-header, .gallery-header,
.visit-info, .visit-form-wrap, .feature-text, .feature-visual,
.story-pillars, .visit-map, .footer-brand, .footer-cols,
.brandstrip-text, .brandstrip-image,
.signatures-header, .sig-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Signature card stagger */
.sig-card:nth-child(1) { transition-delay: 0.05s; }
.sig-card:nth-child(2) { transition-delay: 0.18s; }
.sig-card:nth-child(3) { transition-delay: 0.32s; }

/* Gallery cells - shorter, snappier */
.g {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger siblings */
.story-image       { transition-delay: 0.15s; }
.visit-form-wrap   { transition-delay: 0.15s; }
.feature-visual    { transition-delay: 0.2s; }
.story-pillars     { transition-delay: 0.25s; }
.visit-map         { transition-delay: 0.1s; }
.footer-cols       { transition-delay: 0.12s; }

/* Menu card stagger on tab switch */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-category.active .menu-item {
  animation: cardReveal 0.4s ease both;
}
.menu-category.active .menu-item:nth-child(1)  { animation-delay: 0.03s; }
.menu-category.active .menu-item:nth-child(2)  { animation-delay: 0.08s; }
.menu-category.active .menu-item:nth-child(3)  { animation-delay: 0.13s; }
.menu-category.active .menu-item:nth-child(4)  { animation-delay: 0.18s; }
.menu-category.active .menu-item:nth-child(5)  { animation-delay: 0.22s; }
.menu-category.active .menu-item:nth-child(6)  { animation-delay: 0.26s; }
.menu-category.active .menu-item:nth-child(7)  { animation-delay: 0.30s; }
.menu-category.active .menu-item:nth-child(8)  { animation-delay: 0.33s; }
.menu-category.active .menu-item:nth-child(9)  { animation-delay: 0.36s; }
.menu-category.active .menu-item:nth-child(10) { animation-delay: 0.39s; }
.menu-category.active .menu-item:nth-child(11) { animation-delay: 0.41s; }
.menu-category.active .menu-item:nth-child(12) { animation-delay: 0.43s; }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
