/* =========================================================
   THE LOCAL HOUSE — design tokens
   Display: Fraunces (warm serif, restrained)
   Body:    Space Grotesk
   Utility: IBM Plex Mono (prices, labels, tickets)
   ========================================================= */

:root{
  --cream:      #FBF3E4;
  --cream-2:    #F3E7D2;
  --ink:        #241612;
  --maroon:     #7A1F2B;
  --maroon-2:   #5C1620;
  --gold:       #C4872A;
  --gold-2:     #A66E1E;
  --sage:       #4B6B3A;

  --bg:         var(--cream);
  --bg-alt:     var(--cream-2);
  --surface:    #FFFDF8;
  --text:       var(--ink);
  --text-soft:  #5A4A42;
  --accent:     var(--maroon);
  --accent-2:   var(--gold);
  --border:     rgba(36,22,18,0.12);
  --shadow:     0 20px 50px -25px rgba(36,22,18,0.35);
  --nav-bg:     rgba(251,243,228,0.85);

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

html[data-theme="dark"]{
  --bg:        #1B1210;
  --bg-alt:    #221714;
  --surface:   #2A1C18;
  --text:      #F3E6D8;
  --text-soft: #C9B3A4;
  --accent:    #E0A24A;
  --accent-2:  #D68A3B;
  --border:    rgba(243,230,216,0.14);
  --shadow:    0 24px 60px -25px rgba(0,0,0,0.6);
  --nav-bg:    rgba(27,18,16,0.82);
  --maroon:    #C4536A;
}

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

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .4s ease, color .4s ease;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--accent); color:var(--cream); }

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

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* ---------- kicker / headings ---------- */
.tlh-kicker{
  font-family:var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  color:var(--accent);
  margin-bottom:.75rem;
}
.tlh-h2{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.12;
  margin-bottom:1rem;
  max-width:16ch;
}
.tlh-lede{
  color:var(--text-soft);
  max-width:52ch;
  font-size:1.05rem;
  margin-bottom:1.1rem;
}

.tlh-section{ padding:6.5rem 0; }
.tlh-section-alt{ background:var(--bg-alt); }

/* ================= NAV ================= */
.tlh-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:var(--nav-bg);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:background .4s ease;
}
.tlh-nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 0;
}
.tlh-brand{ display:flex; align-items:center; gap:.6rem; color:var(--text); }
.tlh-brand-mark{ color:var(--accent); display:flex; }
.tlh-brand-word{
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:500;
  letter-spacing:.01em;
}
.tlh-nav-links{
  display:flex; align-items:center; gap:1.9rem;
  font-size:.92rem;
}
.tlh-nav-links a:not(.tlh-nav-call){
  position:relative; padding:.2rem 0;
}
.tlh-nav-links a:not(.tlh-nav-call)::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background:var(--accent); transition:width .3s ease;
}
.tlh-nav-links a:not(.tlh-nav-call):hover::after{ width:100%; }

.tlh-nav-call{
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--accent); color:var(--cream) !important;
  padding:.5rem 1rem; border-radius:100px; font-size:.85rem;
}
.tlh-toggle{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--border); background:var(--surface);
  color:var(--accent); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:transform .3s ease, background .3s ease;
}
.tlh-toggle:hover{ transform:rotate(20deg); }

.tlh-burger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.tlh-burger span{ width:22px; height:2px; background:var(--text); display:block; }

/* ================= HERO ================= */
.tlh-hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  padding-top:6rem;
  overflow:hidden;
}
.tlh-hero-texture{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--gold) 20%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 8% 90%, color-mix(in srgb, var(--maroon) 22%, transparent) 0%, transparent 50%);
  z-index:0;
}
.tlh-hero-texture::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(color-mix(in srgb, var(--text) 7%, transparent) 1px, transparent 1px);
  background-size:22px 22px;
  opacity:.5;
}
.tlh-hero-inner{ position:relative; z-index:1; max-width:900px; }

.tlh-eyebrow{
  font-family:var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  color:var(--accent);
  margin-bottom:1.4rem;
}
.tlh-hero-title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(2.6rem, 6.5vw, 5.2rem);
  line-height:1.04;
  margin-bottom:1.4rem;
  letter-spacing:-.01em;
}
.tlh-hero-title em{
  font-style:italic;
  color:var(--accent);
  font-weight:400;
}
.tlh-hero-sub{
  font-size:1.15rem;
  color:var(--text-soft);
  max-width:46ch;
  margin-bottom:2rem;
}

.tlh-hero-meta{
  display:flex; flex-wrap:wrap; align-items:center; gap:1.2rem 2rem;
  margin-bottom:2.2rem;
}
.tlh-rating-chip{
  display:inline-flex; align-items:center; gap:.55rem;
  background:var(--surface); border:1px solid var(--border);
  padding:.55rem 1rem; border-radius:100px;
  box-shadow:var(--shadow);
}
.tlh-rating-num{ font-family:var(--font-mono); font-weight:600; }
.tlh-stars{ color:var(--gold); font-size:.8rem; letter-spacing:1px; }
.tlh-rating-count{ font-size:.82rem; color:var(--text-soft); }

.tlh-hero-tags{
  display:flex; flex-wrap:wrap; gap:.5rem 1rem;
  font-size:.9rem; color:var(--text-soft); font-family:var(--font-mono);
}
.tlh-hero-tags .dot{ color:var(--accent); }

.tlh-hero-cta{ display:flex; flex-wrap:wrap; gap:1rem; align-items:center; }

.btn{ border-radius:100px; padding:.85rem 1.6rem; font-weight:500; font-size:.95rem; border:1px solid transparent; display:inline-flex; align-items:center; gap:.5rem; transition:all .25s ease; cursor:pointer; }
.tlh-btn-primary{ background:var(--accent); color:var(--cream); }
.tlh-btn-primary:hover{ background:var(--maroon-2); color:var(--cream); transform:translateY(-2px); }
.tlh-btn-ghost{ background:transparent; border-color:var(--border); color:var(--text); }
.tlh-btn-ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }
.tlh-btn-text{ padding:.4rem 0; color:var(--accent); font-weight:600; }
.tlh-btn-text:hover{ gap:.7rem; }

/* Hero Video Background */
.tlh-hero-bg-video-wrap{
  position:absolute; inset:0; z-index:0; overflow:hidden;
}
.tlh-hero-bg-video{
  width:100%; height:100%; object-fit:cover; opacity:0.18;
  filter:contrast(1.05) saturate(1.1);
  transition:opacity .5s ease;
}
html[data-theme="dark"] .tlh-hero-bg-video{ opacity:0.25; }

.tlh-scroll-cue{
  position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:1.5px solid var(--border); border-radius:20px;
  background:none; cursor:pointer; z-index:1;
}
.tlh-scroll-cue span{
  position:absolute; top:6px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:4px; background:var(--accent);
  animation:cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove{ 0%{ top:6px; opacity:1;} 70%{ top:22px; opacity:0;} 100%{ top:22px; opacity:0;} }

/* ================= MARQUEE STRIP ================= */
.tlh-strip{
  background:var(--accent); color:var(--cream);
  overflow:hidden; white-space:nowrap;
  padding:.9rem 0;
}
.tlh-strip-track{
  display:inline-flex; gap:1.4rem;
  animation:marquee 26s linear infinite;
  font-family:var(--font-mono);
  text-transform:uppercase;
  font-size:.82rem;
  letter-spacing:.08em;
}
.tlh-strip-track span{ display:inline-flex; align-items:center; }
.tlh-strip-track .sep{ color:var(--gold); opacity:.8; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ================= ABOUT / FEATURED SLIDER ================= */
.tlh-about-stats{
  display:flex; gap:2.2rem; margin-top:2rem; flex-wrap:wrap;
}
.tlh-about-stats > div{ display:flex; flex-direction:column; }
.tlh-stat-num{ font-family:var(--font-display); font-size:2rem; color:var(--accent); }
.tlh-stat-label{ font-size:.82rem; color:var(--text-soft); max-width:14ch; }

.tlh-photo-frame{
  position:relative; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow);
  border:1px solid var(--border);
  background:var(--surface);
}
.tlh-story-slider{
  position:relative; width:100%; height:460px;
}
.tlh-story-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 0.6s ease, transform 0.6s ease;
  transform:scale(1.03);
}
.tlh-story-slide.active{
  opacity:1; visibility:visible; transform:scale(1);
}
.tlh-story-slide img{
  width:100%; height:100%; object-fit:cover;
}
.tlh-slide-caption{
  position:absolute; bottom:0; left:0; right:0;
  padding:2.5rem 1.5rem 1.2rem;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color:#fff;
  display:flex; flex-direction:column; gap:.2rem;
}
.tlh-slide-caption strong{ font-family:var(--font-display); font-size:1.15rem; font-weight:500; }
.tlh-slide-caption span{ font-size:.82rem; opacity:.85; font-family:var(--font-mono); }

.tlh-slider-controls{
  position:absolute; top:16px; right:16px; z-index:10;
  display:flex; gap:.5rem;
}
.tlh-slider-btn{
  width:36px; height:36px; border-radius:50%;
  background:rgba(0,0,0,0.5); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2); color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all 0.25s ease;
}
.tlh-slider-btn:hover{ background:var(--accent); border-color:var(--accent); }

/* ================= CUISINE CARDS ================= */
.tlh-cuisine-card{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:2.2rem 1.8rem;
  height:100%; transition:transform .3s ease, box-shadow .3s ease;
}
.tlh-cuisine-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.tlh-cuisine-icon{ width:44px; height:44px; color:var(--accent); margin-bottom:1.2rem; }
.tlh-cuisine-card h3{ font-family:var(--font-display); font-size:1.3rem; margin-bottom:.5rem; }
.tlh-cuisine-card p{ color:var(--text-soft); font-size:.95rem; margin:0; }

/* ================= DISH CARDS WITH REAL IMAGES ================= */
.tlh-menu-note{ font-family:var(--font-mono); font-size:.82rem; color:var(--text-soft); }
.tlh-dish-ticket{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-md); overflow:hidden;
  height:100%; position:relative; display:flex; flex-direction:column;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tlh-dish-ticket:hover{ transform:translateY(-6px); border-color:var(--accent); box-shadow:var(--shadow); }

.tlh-dish-img-wrap{
  position:relative; width:100%; height:200px; overflow:hidden;
  background:var(--bg-alt);
}
.tlh-dish-img-wrap img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.tlh-dish-ticket:hover .tlh-dish-img-wrap img{ transform:scale(1.06); }

.tlh-dish-body{
  padding:1.4rem; display:flex; flex-direction:column; flex:1; justify-content:space-between;
}
.tlh-dish-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:.7rem; }
.tlh-veg-dot-badge{ display:inline-block; width:14px; height:14px; border:1.5px solid #2e7d32; padding:2px; box-sizing:border-box; border-radius:2px; vertical-align:middle; margin-right:4px; }
.tlh-veg-dot-badge::after{ content:""; display:block; width:100%; height:100%; background:#2e7d32; border-radius:50%; }

/* Homepage Featured Menu Banner */
.tlh-menu-preview-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2A1D17 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(243, 230, 216, 0.15);
  box-shadow: var(--shadow-lg);
}
.tlh-menu-preview-banner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.tlh-menu-preview-banner p {
  color: #E8D9CA;
  margin-bottom: 0;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.5;
}

.tlh-dish-tag{ font-family:var(--font-mono); font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; color:var(--accent); }
.tlh-dish-ticket h3{ font-family:var(--font-display); font-size:1.18rem; margin-bottom:.4rem; }
.tlh-dish-ticket p{ color:var(--text-soft); font-size:.88rem; margin-bottom:1.1rem; flex:1; }
.tlh-dish-price{ font-family:var(--font-mono); font-size:.88rem; color:var(--text); border-top:1px dashed var(--border); padding-top:.8rem; display:block; font-weight:600; }

/* Promotional Showcase Banner */
.tlh-promo-banner{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; margin-top:2.5rem;
  box-shadow:var(--shadow);
}
.tlh-promo-img{
  width:100%; max-height:420px; object-fit:cover; cursor:pointer;
  transition:transform .4s ease;
}
.tlh-promo-banner:hover .tlh-promo-img{ transform:scale(1.02); }

.tlh-price-disclaimer{ margin-top:1.6rem; font-size:.78rem; color:var(--text-soft); font-family:var(--font-mono); }

/* ================= REELS / VIDEO STORIES SECTION ================= */
.tlh-reels-header{
  margin-bottom:2rem;
}
.tlh-reels-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:1.5rem;
}
.tlh-reel-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  aspect-ratio: 9/15; background:#000; box-shadow:0 10px 30px rgba(0,0,0,0.25);
  cursor:pointer; border:1px solid var(--border);
  transition:transform .35s ease, box-shadow .35s ease;
}
.tlh-reel-card:hover{
  transform:translateY(-6px); box-shadow:var(--shadow);
}
.tlh-reel-card video{
  width:100%; height:100%; object-fit:cover; display:block;
}
.tlh-reel-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
  padding:1.2rem; display:flex; flex-direction:column; justify-content:space-between;
  color:#fff; pointer-events:none;
}
.tlh-reel-badge{
  align-self:flex-start; font-family:var(--font-mono); font-size:.72rem;
  background:rgba(122,31,43,0.85); backdrop-filter:blur(6px);
  padding:.3rem .7rem; border-radius:100px; border:1px solid rgba(255,255,255,0.2);
  text-transform:uppercase; letter-spacing:.06em;
}
.tlh-reel-info h4{
  font-family:var(--font-display); font-size:1.15rem; font-weight:500; margin-bottom:.3rem; text-shadow:0 2px 4px rgba(0,0,0,0.5);
}
.tlh-reel-info p{
  font-size:.82rem; opacity:.9; margin:0; text-shadow:0 1px 3px rgba(0,0,0,0.5);
}
.tlh-reel-actions{
  position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);
  width:54px; height:54px; border-radius:50%;
  background:rgba(0,0,0,0.5); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.3); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; opacity:0.85; transition:all 0.3s ease;
  pointer-events:none;
}
.tlh-reel-card:hover .tlh-reel-actions{
  opacity:1; transform:translate(-50%, -50%) scale(1.1); background:var(--accent); border-color:var(--accent);
}

/* Sound toggle button on reel card */
.tlh-reel-sound-btn{
  position:absolute; top:12px; right:12px; z-index:10;
  width:32px; height:32px; border-radius:50%;
  background:rgba(0,0,0,0.6); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.25); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; cursor:pointer; transition:all .25s ease;
}
.tlh-reel-sound-btn:hover{ background:rgba(0,0,0,0.85); transform:scale(1.1); }

/* ================= GALLERY WITH FILTERS & LIGHTBOX ================= */
.tlh-gallery-filters{
  display:flex; flex-wrap:wrap; gap:.6rem; margin:1.8rem 0 2rem;
}
.tlh-filter-btn{
  font-family:var(--font-mono); font-size:.8rem; padding:.5rem 1.1rem;
  border-radius:100px; border:1px solid var(--border); background:var(--surface);
  color:var(--text-soft); cursor:pointer; transition:all .25s ease;
}
.tlh-filter-btn:hover, .tlh-filter-btn.active{
  background:var(--accent); color:var(--cream); border-color:var(--accent);
}

.tlh-gallery-grid-new{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
  gap:1.2rem; margin-top:1rem;
}
.tlh-g-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  aspect-ratio: 4/3; background:var(--surface); border:1px solid var(--border);
  cursor:pointer; box-shadow:0 8px 24px -16px rgba(0,0,0,0.3);
  transition:transform .3s ease, box-shadow .3s ease;
}
.tlh-g-card:hover{
  transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--accent);
}
.tlh-g-card img, .tlh-g-card video{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .5s ease;
}
.tlh-g-card:hover img{ transform:scale(1.06); }

.tlh-g-card-type{
  position:absolute; top:10px; right:10px; z-index:2;
  background:rgba(0,0,0,0.65); backdrop-filter:blur(6px); color:#fff;
  padding:.25rem .6rem; border-radius:100px; font-family:var(--font-mono);
  font-size:.7rem; display:inline-flex; align-items:center; gap:.3rem;
  border:1px solid rgba(255,255,255,0.2);
}

.tlh-g-card-caption{
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  padding:2rem 1rem .8rem;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color:#fff; font-size:.85rem; opacity:0; transform:translateY(8px);
  transition:all .3s ease; font-family:var(--font-body);
}
.tlh-g-card:hover .tlh-g-card-caption{ opacity:1; transform:translateY(0); }

/* ================= MEDIA LIGHTBOX MODAL ================= */
.tlh-modal{
  position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,0.92); backdrop-filter:blur(12px);
  display:none; align-items:center; justify-content:center;
  padding:2rem; opacity:0; transition:opacity .35s ease;
}
.tlh-modal.active{ display:flex; opacity:1; }

.tlh-modal-content{
  position:relative; max-width:900px; max-height:85vh; width:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.tlh-modal-media-wrap{
  position:relative; width:100%; max-height:75vh;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  border-radius:var(--radius-md); box-shadow:0 25px 60px rgba(0,0,0,0.8);
}
.tlh-modal-media-wrap img{
  max-width:100%; max-height:75vh; object-fit:contain; border-radius:var(--radius-md);
}
.tlh-modal-media-wrap video{
  max-width:100%; max-height:75vh; object-fit:contain; border-radius:var(--radius-md);
  outline:none;
}
.tlh-modal-caption{
  color:#fff; margin-top:1.2rem; text-align:center;
  font-family:var(--font-display); font-size:1.1rem;
}
.tlh-modal-close{
  position:absolute; top:20px; right:24px; z-index:2010;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3);
  color:#fff; font-size:1.4rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .25s ease;
}
.tlh-modal-close:hover{ background:var(--accent); border-color:var(--accent); transform:scale(1.1); }

.tlh-modal-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2010;
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3);
  color:#fff; font-size:1.3rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .25s ease;
}
.tlh-modal-nav.prev{ left:24px; }
.tlh-modal-nav.next{ right:24px; }
.tlh-modal-nav:hover{ background:var(--accent); border-color:var(--accent); transform:translateY(-50%) scale(1.1); }

/* ================= REVIEWS TICKETS ================= */
.tlh-ticket-row{
  display:flex; gap:1.4rem; overflow-x:auto; padding:1.6rem .2rem 1.2rem;
  scroll-snap-type:x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}
.tlh-ticket-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge, Opera */
  width: 0;
  height: 0;
}
.tlh-ticket{
  flex:0 0 280px; scroll-snap-align:start;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:4px;
  padding:1.5rem 1.4rem 1.6rem;
  position:relative;
  box-shadow:0 12px 30px -20px rgba(36,22,18,.4);
}
.tlh-ticket::before, .tlh-ticket::after{
  content:""; position:absolute; width:16px; height:16px; background:var(--bg);
  border-radius:50%; top:50%; transform:translateY(-50%);
}
.tlh-ticket::before{ left:-8px; }
.tlh-ticket::after{ right:-8px; }
.tlh-ticket-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:.9rem; }
.tlh-ticket-stars{ color:var(--gold); font-size:.75rem; letter-spacing:1px; }
.tlh-ticket-num{ font-family:var(--font-mono); font-size:.72rem; color:var(--text-soft); }
.tlh-ticket p{ font-family:var(--font-display); font-size:1.02rem; line-height:1.4; margin-bottom:1rem; }
.tlh-ticket-by{ font-family:var(--font-mono); font-size:.72rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:.05em; }

.tlh-owner-note{
  margin-top:2.2rem; display:flex; gap:1rem; align-items:flex-start;
  background:var(--bg-alt); border-radius:var(--radius-md); padding:1.4rem 1.6rem;
  max-width:70ch;
}
.tlh-owner-note i{ color:var(--accent); font-size:1.3rem; margin-top:.2rem; }
.tlh-owner-note p{ margin:0; color:var(--text-soft); font-size:.95rem; }

/* ================= VISIT / INFO ================= */
.tlh-info-card{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.2rem; height:100%;
}
.tlh-info-list{ list-style:none; padding:0; margin:0 0 1.6rem; display:flex; flex-direction:column; gap:1.3rem; }
.tlh-info-list li{ display:flex; gap:1rem; align-items:flex-start; }
.tlh-info-list i{ color:var(--accent); font-size:1.15rem; margin-top:.15rem; }
.tlh-info-list strong{ display:block; font-family:var(--font-display); font-size:1rem; margin-bottom:.15rem; }
.tlh-info-list span{ color:var(--text-soft); font-size:.9rem; }
.tlh-info-list a{ color:var(--accent); text-decoration:underline; }

.tlh-facility-chips{ display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:1.8rem; }
.tlh-facility-chips span{
  font-family:var(--font-mono); font-size:.75rem;
  border:1px solid var(--border); border-radius:100px;
  padding:.4rem .8rem; display:inline-flex; align-items:center; gap:.4rem;
  color:var(--text-soft);
}

.tlh-visit-cta{ display:flex; gap:.8rem; flex-wrap:wrap; margin-bottom:1.6rem; }
.tlh-social-row{ display:flex; gap:.8rem; }
.tlh-social-row a{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; color:var(--accent);
  transition:background .25s ease, color .25s ease;
}
.tlh-social-row a:hover{ background:var(--accent); color:var(--cream); }

.tlh-map-frame{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow);
  height:100%; min-height:380px; border:1px solid var(--border);
}
.tlh-map-frame iframe{ width:100%; height:100%; min-height:380px; border:0; filter:saturate(.9); }
html[data-theme="dark"] .tlh-map-frame iframe{ filter:saturate(.8) invert(.92) hue-rotate(180deg); }

/* ================= FOOTER ================= */
.tlh-footer{
  background:var(--ink); color:var(--cream);
  padding:4.5rem 0 1.5rem;
}
html[data-theme="dark"] .tlh-footer{ background:#120C0A; }
.tlh-footer-brand{ color:var(--cream); margin-bottom:.8rem; display:inline-flex; }
.tlh-footer-brand .tlh-brand-mark{ color:var(--gold); }
.tlh-footer-tag{ color:#C9B3A4; font-size:.88rem; max-width:32ch; }
.tlh-footer h4{
  font-family:var(--font-mono); text-transform:uppercase; font-size:.75rem;
  letter-spacing:.1em; color:var(--gold); margin-bottom:1rem;
}
.tlh-footer a{ display:block; color:#E8D9CA; font-size:.9rem; margin-bottom:.65rem; opacity:.85; }
.tlh-footer a:hover{ opacity:1; color:var(--gold); }
.tlh-footer-address{ color:#C9B3A4; font-size:.88rem; margin-bottom:.6rem; }
.tlh-footer-bottom{
  border-top:1px solid rgba(243,230,216,.14);
  margin-top:3rem; padding-top:1.5rem;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:.6rem;
  font-family:var(--font-mono); font-size:.75rem; color:#C9B3A4;
}

@media (max-width:767px){
  .tlh-footer{ text-align:center; }
  .tlh-footer-brand{ justify-content:center; margin-left:auto; margin-right:auto; }
  .tlh-footer-tag{ margin-left:auto; margin-right:auto; }
  .tlh-footer-bottom{ flex-direction:column; align-items:center; text-align:center; gap:.5rem; }
}

/* ================= DIGITAL MENU BOARD & SEARCH ================= */
.tlh-menu-controls-wrap{
  margin-top:1.8rem;
  margin-bottom:2.2rem;
  display:flex; flex-direction:column; gap:1.2rem;
}

.tlh-menu-search-box{
  position:relative; max-width:520px; width:100%;
}

.tlh-menu-search-input{
  width:100%; padding:.85rem 1.2rem .85rem 2.8rem;
  border-radius:100px; border:1px solid var(--border);
  background:var(--surface); color:var(--text);
  font-family:var(--font-body); font-size:.95rem; outline:none;
  transition:all .25s ease;
  box-shadow:inset 0 2px 4px rgba(0,0,0,0.03);
}

.tlh-menu-search-input:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.tlh-menu-search-icon{
  position:absolute; left:1rem; top:50%; transform:translateY(-50%);
  color:var(--accent); font-size:1rem; pointer-events:none;
}

.tlh-menu-cat-tabs{
  display:flex; flex-wrap:wrap; gap:.6rem;
  border-bottom:1px solid var(--border); padding-bottom:.8rem;
}

.tlh-menu-tab-btn{
  font-family:var(--font-mono); font-size:.82rem;
  padding:.55rem 1.2rem; border-radius:100px;
  border:1px solid var(--border); background:var(--surface);
  color:var(--text-soft); cursor:pointer;
  transition:all .25s ease;
  display:inline-flex; align-items:center; gap:.4rem;
}

.tlh-menu-tab-btn:hover, .tlh-menu-tab-btn.active{
  background:var(--accent); color:var(--cream); border-color:var(--accent);
}

.tlh-menu-sub-pills{
  display:flex; flex-wrap:wrap; gap:.4rem;
}

.tlh-menu-sub-pill{
  font-family:var(--font-mono); font-size:.75rem;
  padding:.35rem .8rem; border-radius:100px;
  border:1px solid var(--border); background:var(--bg-alt);
  color:var(--text-soft); cursor:pointer; transition:all .2s ease;
}

.tlh-menu-sub-pill:hover, .tlh-menu-sub-pill.active{
  background:var(--gold); color:var(--ink); border-color:var(--gold);
  font-weight:600;
}

/* Category Sections */
.tlh-menu-cat-section{
  margin-bottom:3.5rem;
}

.tlh-menu-cat-title{
  font-family:var(--font-display); font-size:1.8rem; font-weight:600;
  color:var(--text); margin-bottom:1.4rem;
  display:flex; align-items:center; gap:.8rem;
  border-bottom:2px solid var(--accent); padding-bottom:.4rem;
}

.tlh-menu-sub-title{
  font-family:var(--font-display); font-size:1.3rem; font-weight:500;
  color:var(--accent); margin:1.8rem 0 1rem;
  display:flex; align-items:center; gap:.5rem;
}

/* Menu Items Grid */
.tlh-menu-items-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(310px, 1fr));
  gap:1.2rem;
}

.tlh-menu-item-card{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:1.1rem 1.3rem;
  display:flex; flex-direction:column; justify-content:space-between;
  position:relative;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tlh-menu-item-card:hover{
  transform:translateY(-4px); border-color:var(--accent); box-shadow:var(--shadow);
}

.tlh-menu-item-header{
  display:flex; align-items:flex-start; justify-content:space-between; gap:.8rem;
}

.tlh-menu-item-title{
  font-family:var(--font-display); font-size:1.05rem; font-weight:600;
  color:var(--text); margin:0 0 .2rem;
  display:flex; align-items:center; gap:.5rem;
}

.tlh-menu-item-desc{
  font-size:.82rem; color:var(--text-soft); margin:0;
  font-family:var(--font-body);
}

.tlh-menu-item-price{
  font-family:var(--font-mono); font-size:.95rem; font-weight:700;
  color:var(--accent);
  background:color-mix(in srgb, var(--accent) 8%, var(--surface));
  padding:.25rem .65rem; border-radius:6px;
  border:1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  white-space:nowrap;
}

.tlh-menu-item-price-multi{
  font-family:var(--font-mono); font-size:.78rem; font-weight:700;
  color:var(--accent);
  background:color-mix(in srgb, var(--accent) 8%, var(--surface));
  padding:.3rem .6rem; border-radius:6px;
  border:1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  display:flex; flex-direction:column; align-items:flex-end; gap:.15rem;
  white-space:nowrap;
}

.tlh-menu-notice-card{
  background:var(--bg-alt); border:1px dashed var(--border);
  border-radius:var(--radius-md); padding:1.5rem; text-align:center;
  margin-top:2.5rem;
}

.tlh-menu-notice-card p{ margin:0; font-family:var(--font-mono); font-size:.85rem; color:var(--text-soft); }

/* ================= RESPONSIVE NAV ================= */
@media (max-width:991px){
  .tlh-burger{ display:flex; }
  .tlh-nav-links{
    position:fixed; top:64px; left:0; right:0;
    background:var(--nav-bg); backdrop-filter:blur(14px);
    flex-direction:column; align-items:flex-start; gap:0;
    border-bottom:1px solid var(--border);
    max-height:0; overflow:hidden; padding:0 1.2rem;
    transition:max-height .35s ease, padding .35s ease;
  }
  .tlh-nav-links.open{ max-height:420px; padding:1rem 1.2rem 1.6rem; }
  .tlh-nav-links a{ padding:.75rem 0; width:100%; border-bottom:1px solid var(--border); }
  .tlh-nav-links .tlh-toggle{ margin-top:1rem; }
  .tlh-nav-call{ display:none !important; }
}

@media (max-width:576px){
  .tlh-section{ padding:4rem 0; }
  .tlh-hero{ min-height:auto; padding:7rem 0 5rem; }
  .tlh-about-stats{ gap:1.4rem; }
  .tlh-story-slider{ height:320px; }
  .tlh-reels-grid{ grid-template-columns:repeat(auto-fill, minmax(200px, 1fr)); }
  .tlh-modal-nav.prev{ left:8px; }
  .tlh-modal-nav.next{ right:8px; }
  .tlh-modal{ padding:1rem; }
  .tlh-menu-items-grid{ grid-template-columns:1fr; }
}


