/* ============================================================
   Le Cayenne — Web v2 styles (additive layer)
   Loaded AFTER styles.css. New components for v2 improvements.
   ============================================================ */

/* Scroll reveal */
.lc-rv { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring); }
.lc-rv.in { opacity: 1; transform: translateY(0); }
.lc-rv-2 { transition-delay: 80ms; }
.lc-rv-3 { transition-delay: 160ms; }
.lc-rv-4 { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .lc-rv { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   WHY US STRIP (Home)
   ============================================================ */
.lc-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 700px) { .lc-why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .lc-why { grid-template-columns: repeat(4, 1fr); } }
.lc-why-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-spring);
}
.lc-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hov); }
.lc-why-card::after {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 999px;
  background: var(--yellow); opacity: 0.12;
  transition: transform var(--dur-slow) var(--ease-spring);
}
.lc-why-card:hover::after { transform: scale(1.4); }
.lc-why-num {
  font-family: var(--font-display); font-size: 14px;
  color: var(--orange); letter-spacing: 0.18em;
}
.lc-why-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 12px 0 16px;
}
.lc-why-title {
  font-family: var(--font-display); font-size: 22px;
  text-transform: uppercase; letter-spacing: -0.005em;
  line-height: 1;
}
.lc-why-desc {
  margin-top: 10px;
  color: var(--gray-4);
  font-size: 13.5px; line-height: 1.55;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lc-testi {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .lc-testi { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .lc-testi { grid-template-columns: repeat(3, 1fr); } }
.lc-testi-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
}
.lc-testi-stars {
  color: var(--orange); font-size: 16px;
  letter-spacing: 2px;
}
.lc-testi-quote {
  margin: 14px 0 18px;
  font-size: 15px; line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.lc-testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-1);
}
.lc-testi-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
  flex-shrink: 0;
}
.lc-testi-name { font-weight: 700; font-size: 13.5px; }
.lc-testi-meta { font-size: 11px; color: var(--gray-3); margin-top: 2px; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.lc-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .lc-gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .lc-gallery { grid-template-columns: repeat(6, 1fr); } }
.lc-gallery-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(40px, 5vw, 56px);
  overflow: hidden; position: relative;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-spring);
}
.lc-gallery-tile:hover { transform: scale(1.03); }
.lc-gallery-tile:nth-child(2n) { background: linear-gradient(160deg, var(--orange), var(--ink)); }
.lc-gallery-tile:nth-child(3n) { background: linear-gradient(160deg, var(--ink), var(--orange-deep)); }
.lc-gallery-tile:nth-child(5n) { background: linear-gradient(135deg, var(--yellow), #FFA500); }
.lc-gallery-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.3), transparent 40%);
  pointer-events: none;
}

/* ============================================================
   HOURS CARD (Home + About)
   ============================================================ */
.lc-hours {
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: clamp(28px, 4vw, 48px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-3);
}
.lc-hours::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 999px;
  background: radial-gradient(circle, rgba(255,90,31,0.3), transparent 60%);
}
.lc-hours-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 800px) { .lc-hours-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.lc-hours-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 14px 0 16px;
  color: #fff;
}
.lc-hours-title span { color: var(--orange); }
.lc-hours-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31, 166, 83, 0.18); color: var(--green-text);
  padding: 7px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(31, 166, 83, 0.4);
}
.lc-hours-status i {
  width: 8px; height: 8px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: lc-pulse 2s ease-in-out infinite;
}
@keyframes lc-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.lc-hours-list {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}
.lc-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.lc-hours-row:last-child { border-bottom: 0; }
.lc-hours-row.is-today { color: var(--yellow); font-weight: 700; }
.lc-hours-row b { font-family: var(--font-mono); font-weight: 600; }

/* ============================================================
   MENU v2: search + sticky cat sidebar + dietary
   ============================================================ */
.lc-menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .lc-menu-layout { grid-template-columns: 240px 1fr; gap: 48px; } }
.lc-menu-side {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  align-self: start;
  display: none;
}
@media (min-width: 1024px) { .lc-menu-side { display: block; } }
/* [HEAL A11Y-HEADING-01 2026-06-04] Sidebar section headings promoted h4→h2 in
   JSX to fix h1→h4 skip; selector widened to keep identical caption styling. */
.lc-menu-side h2,
.lc-menu-side h4 {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-3); margin: 24px 0 12px;
}
.lc-menu-side h2:first-of-type,
.lc-menu-side h4:first-of-type { margin-top: 0; }
.lc-menu-side-list { display: flex; flex-direction: column; gap: 4px; }
.lc-menu-side-link {
  background: transparent; border: 0; text-align: left;
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--gray-4);
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-menu-side-link:hover { background: var(--paper); color: var(--ink); }
.lc-menu-side-link.is-on { background: var(--ink); color: #fff; }
/* [W3-HEAL P1-02 2026-06-06] count badge: gray-4 at opacity 0.6 = 2.70:1 FAIL (11px small text) → opacity 1 = 6.63:1 PASS. */
.lc-menu-side-link span { font-family: var(--font-mono); font-size: 11px; opacity: 1; }

.lc-menu-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1.5px solid var(--gray-1);
  border-radius: 999px;
  padding: 14px 20px;
  margin-bottom: 18px;
  transition: border-color var(--dur-base) var(--ease-spring);
}
.lc-menu-search:focus-within { border-color: var(--ink); }
.lc-menu-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 14px; color: var(--ink);
}
.lc-menu-search input::placeholder { color: var(--gray-3); }
.lc-menu-search-icon { color: var(--gray-3); flex-shrink: 0; }

.lc-diet-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.lc-diet-chip {
  background: var(--paper); border: 1px solid var(--gray-1);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--gray-4);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-diet-chip:hover { border-color: var(--ink); color: var(--ink); }
.lc-diet-chip.is-on { background: var(--orange-text); color: #fff; border-color: var(--orange-text); }

.lc-menu-empty {
  text-align: center; padding: 60px 20px;
  background: var(--paper); border-radius: 22px;
}
.lc-menu-empty-icon { font-size: 48px; }
.lc-menu-empty-title { font-family: var(--font-display); font-size: 28px; margin: 14px 0 6px; }
.lc-menu-empty-desc { color: var(--gray-3); font-size: 14px; }

/* ============================================================
   LOYALTY v2: tier visual, achievements, streak, referral
   ============================================================ */
.lc-tier-bar {
  background: var(--paper);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-1);
  margin-top: 20px;
}
.lc-tier-bar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.lc-tier-bar-head h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-3); margin: 0; }
.lc-tier-bar-head b { font-family: var(--font-display); font-size: 18px; }
.lc-tier-track {
  position: relative;
  height: 8px; background: var(--gray-1);
  border-radius: 999px;
  margin: 8px 0 32px;
}
.lc-tier-track-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 999px;
}
.lc-tier-stops {
  position: absolute; inset: 0; top: -4px;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.lc-tier-stop {
  position: relative;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--paper); border: 3px solid var(--gray-2);
  flex-shrink: 0;
}
.lc-tier-stop.passed { border-color: var(--orange); background: var(--orange); }
.lc-tier-stop.current { border-color: var(--ink); background: var(--yellow); transform: scale(1.3); box-shadow: 0 0 0 4px rgba(10,10,10,0.08); }
.lc-tier-stop-label {
  position: absolute; left: 50%; top: 22px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3);
}
.lc-tier-stop.current .lc-tier-stop-label { color: var(--ink); }

.lc-achievements {
  display: grid; gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}
@media (min-width: 700px) { .lc-achievements { grid-template-columns: repeat(4, 1fr); } }
.lc-achi {
  background: var(--paper);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-spring);
}
.lc-achi:hover { transform: translateY(-3px); }
/* [W3-HEAL P1-02 2026-06-06] opacity 0.4 crushed locked name to 2.76:1 + meta to 1.76:1 (axe serious).
   "Locked" semantic kept via heavier grayscale + a readable 0.85 dim; name(ink)=13.5:1, meta(gray-4 @0.85)=4.9:1 PASS. */
.lc-achi.is-locked { opacity: 0.85; filter: grayscale(0.85); }
.lc-achi-icon { font-size: 32px; }
.lc-achi-name { font-weight: 700; font-size: 12px; margin-top: 8px; }
.lc-achi-meta { font-size: 10.5px; color: var(--gray-4); margin-top: 2px; line-height: 1.4; }

.lc-streak {
  /* [W3-HEAL P1-02 2026-06-06] white title/desc on orange 3.11:1 → --orange-text fill 5.18:1. */
  background: var(--orange-text);
  border-radius: 22px;
  padding: 20px 24px;
  color: #fff;
  display: flex; align-items: center; gap: 18px;
  margin-top: 16px;
  box-shadow: var(--shadow-cta);
}
.lc-streak-icon { font-size: 44px; line-height: 1; }
.lc-streak-body { flex: 1; }
.lc-streak-title { font-family: var(--font-display); font-size: 22px; line-height: 1; }
/* [W3-HEAL P1-02 2026-06-06] opacity 0.85 dropped desc to 4.16:1 on --orange-text fill (12.5px needs 4.5) → opacity 1 = 5.18:1. */
.lc-streak-desc { font-size: 12.5px; opacity: 1; margin-top: 4px; }

.lc-referral {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.lc-referral h4 { font-family: var(--font-display); font-size: 26px; margin: 0; text-transform: uppercase; letter-spacing: -0.005em; line-height: 0.95; }
.lc-referral p { font-size: 13px; color: var(--gray-4); margin: 8px 0 16px; line-height: 1.5; }
.lc-referral-code {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--yellow);
  padding: 12px 16px;
  border-radius: 14px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em;
}
.lc-referral-code-copy {
  margin-left: auto;
  /* [W3-HEAL P1-02 2026-06-06] white on orange 3.11:1 → --orange-text fill 5.18:1. */
  background: var(--orange-text); color: #fff; border: 0;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   ABOUT v2: timeline, values
   ============================================================ */
.lc-timeline {
  margin-top: 36px;
  display: grid; gap: 14px;
}
.lc-timeline-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 18px;
  padding: 20px; background: var(--paper);
  border-radius: 22px; box-shadow: var(--shadow-1);
}
@media (min-width: 700px) { .lc-timeline-row { grid-template-columns: 120px 1fr; gap: 30px; padding: 24px 28px; } }
.lc-timeline-year {
  /* [W3-HEAL-R2 P1-A 2026-06-06] orange on paper = 2.92:1 (clamp can render <24px=small) → --orange-text 4.85:1. */
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--orange-text); line-height: 1; letter-spacing: -0.005em;
}
.lc-timeline-row h4 { margin: 0; font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); line-height: 1.1; text-transform: uppercase; letter-spacing: -0.005em; }
.lc-timeline-row p { margin: 8px 0 0; color: var(--gray-4); font-size: 14px; line-height: 1.55; }

.lc-values {
  margin-top: 36px;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .lc-values { grid-template-columns: repeat(3, 1fr); } }
.lc-value {
  background: var(--ink); color: #fff;
  border-radius: 22px; padding: 24px;
  position: relative; overflow: hidden;
}
/* [W3-HEAL-R2 P1-A 2026-06-06] orange card body: white-on-orange can't reach AA for small text
   (white@0.85 = 2.62:1 FAIL) — flip the whole orange card to ink text (ink@0.85 on orange = 5.42:1). */
.lc-value:nth-child(2) { background: var(--orange); color: var(--ink); }
.lc-value:nth-child(3) { background: var(--yellow); color: var(--ink); }
/* [W3-HEAL-R2 P1-A 2026-06-06] ghost number was opacity 0.3 (white/ink num = 1.36–2.61:1, FAIL 3:1 large).
   Raise base to 0.55 (card1 white/ink 6.28:1, card3 ink/yellow 4.05:1); orange card overridden below. */
.lc-value-num {
  font-family: var(--font-display); font-size: 60px;
  line-height: 0.85; opacity: 0.55;
  margin-bottom: 8px;
}
.lc-value:nth-child(2) .lc-value-num { opacity: 0.7; } /* ink ghost on orange 0.7 = 4.17:1 */
.lc-value h5 { font-family: var(--font-display); font-size: 24px; margin: 0; text-transform: uppercase; letter-spacing: -0.005em; }
.lc-value p { font-size: 13.5px; line-height: 1.55; margin: 10px 0 0; opacity: 0.85; }

/* ============================================================
   CART v2: time slot, promo, notes
   ============================================================ */
.lc-cart-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-1);
}
.lc-cart-section h5 {
  margin: 0 0 10px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-3);
}
.lc-time-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.lc-time-slot {
  background: var(--cream); border: 1.5px solid transparent;
  padding: 10px 6px; border-radius: 12px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-mono);
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-time-slot:hover { border-color: var(--gray-2); }
.lc-time-slot.is-on { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.lc-promo {
  display: flex; gap: 6px;
}
.lc-promo input {
  flex: 1; background: var(--cream); border: 1.5px solid transparent;
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; outline: 0;
  font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.lc-promo input:focus { border-color: var(--orange); background: #fff; }
.lc-promo button {
  background: var(--ink); color: #fff; border: 0;
  padding: 0 18px; border-radius: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.lc-notes {
  width: 100%; background: var(--cream); border: 1.5px solid transparent;
  padding: 12px 14px; border-radius: 12px;
  font-size: 13px; outline: 0; resize: vertical; min-height: 60px;
  font-family: var(--font-sans);
  color: var(--ink);
}
.lc-notes:focus { border-color: var(--orange); background: #fff; }

/* ============================================================
   WIZARD v2: combo savings badge, allergen pills
   ============================================================ */
.lc-wiz-savings {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-text); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-left: 8px;
}
.lc-allergen-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cream-2); color: var(--gray-4);
  padding: 4px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
}
.lc-allergen-pill--spicy { background: rgba(255,90,31,0.15); color: var(--orange-text); }

/* Floating "Save as favorite" on wizard */
.lc-wiz-fav {
  position: absolute; top: 16px; right: 64px;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.95); border: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); z-index: 6;
  transition: all var(--dur-fast) var(--ease-spring);
}
.lc-wiz-fav:hover { background: var(--ink); color: var(--orange); }
.lc-wiz-fav.is-on { background: var(--orange); color: #fff; }

/* ============================================================
   FOOTER ENHANCEMENTS
   ============================================================ */
.lc-footer-newsletter {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  margin-top: 20px;
}
.lc-footer-newsletter h5 {
  margin: 0; font-family: var(--font-display); font-size: 20px;
  color: var(--yellow); text-transform: uppercase; letter-spacing: -0.005em;
}
.lc-footer-newsletter p { color: rgba(255,255,255,0.55); margin: 8px 0 14px; font-size: 13px; }
.lc-footer-newsletter-form { display: flex; gap: 6px; }
.lc-footer-newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px; border-radius: 12px;
  color: #fff; font-size: 13px; outline: 0;
}
.lc-footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.lc-footer-newsletter-form button {
  background: var(--orange); color: #fff; border: 0;
  padding: 0 18px; border-radius: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
