/* ===========================================================
   Tino's Tazza — shared stylesheet
   Kingston, NJ Italian cafe + local city pages
   =========================================================== */

:root {
  /* Brand palette from the Tino's Tazza logo: terracotta lettering with warm
     orange, light yellow and sand. Deliberately no near-black. */
  --primary: #b5654a;        /* logo terracotta */
  --primary-dark: #96503a;
  --accent: #e2661c;         /* vibrant orange — CTAs */
  --accent-dark: #c4551a;
  --gold: #f5c245;           /* light yellow */
  --sand: #eadfc8;
  --sage: #7c8471;           /* logo backdrop green — accent use */
  --olive: #5e6b47;          /* deep olive green — dark section backgrounds */
  --olive-dark: #4b5638;
  --cream: #fdf6ea;
  --cream-2: #f4e7d2;
  --dark: #a85940;           /* warm terracotta (replaces near-black) */
  --dark-bg: #8f4a33;        /* deep rust (replaces near-black) */
  --ink: #4a3b31;            /* warm brown for text on light surfaces */
  --text: #4f4137;
  --text-light: #8c7b6b;
  --white: #fff;
  --radius: 12px;
  --maxw: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* image placeholders (swap for real photos/video later) */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(181,101,74,.06) 0 12px, rgba(181,101,74,.12) 12px 24px),
    var(--cream-2);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--primary); font-size: 13px; letter-spacing: .5px; font-weight: 600;
  border-radius: var(--radius); padding: 16px; min-height: 220px;
}
.ph span { opacity: .7; max-width: 280px; line-height: 1.5; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: background .3s, box-shadow .3s, opacity 1s ease; }
.nav.scrolled, .nav.solid { background: rgba(168,89,64,.97); box-shadow: 0 2px 20px rgba(143,74,51,.28); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { color: var(--white); font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; font-style: italic; letter-spacing: 1px; display: inline-flex; align-items: center; }
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 46px; width: auto; display: block; }
.footer-brand .nav-logo img { height: 64px; }
@media (max-width: 860px) { .nav-logo img { height: 38px; } }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--white); font-size: 14px; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.btn-order { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white) !important; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: background .2s, transform .2s; border: none; cursor: pointer; }
.btn-order:hover { background: var(--accent-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* HERO — full-bleed cinematic video. The still image is the poster/fallback.
   The tint lives on its own layer so it can fade in after the intro. */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: url('/assets/hero-coffee.jpg') center center / cover no-repeat;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
/* left-to-right fade: headline stays readable, cup / pour on the right stays visible */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(143,74,51,.94) 0%,
    rgba(143,74,51,.86) 26%,
    rgba(143,74,51,.46) 50%,
    rgba(143,74,51,.10) 72%,
    rgba(143,74,51,0) 100%);
  transition: opacity 1s ease;
}
.hero-content { position: relative; z-index: 2; text-align: left; color: var(--white); max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 140px 24px 90px; transition: opacity 1s ease; }

/* --- intro state: pure video, nothing on top --- */
.hero-intro .nav { opacity: 0 !important; pointer-events: none; }
.hero-intro .hero-content { opacity: 0 !important; }
.hero-intro .hero-overlay { opacity: 0 !important; }
.hero-sub { font-size: 14px; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.1; margin-bottom: 24px; max-width: 640px; text-shadow: 0 2px 18px rgba(90,42,26,.45); }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.9); margin-bottom: 36px; max-width: 560px; text-shadow: 0 1px 10px rgba(90,42,26,.4); }
.hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--white); color: var(--white); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: .2s; background: transparent; cursor: pointer; }
.btn-outline:hover { background: var(--white); color: var(--ink); }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.hero-pins { display: flex; gap: 10px 22px; justify-content: flex-start; flex-wrap: wrap; margin-top: 30px; font-size: 13px; color: rgba(255,255,255,.85); letter-spacing: .3px; text-shadow: 0 1px 8px rgba(90,42,26,.5); }
.hero-pins span { display: inline-flex; align-items: center; gap: 6px; }

/* compact city hero */
.city-hero { position: relative; background: linear-gradient(135deg, #8f4a33 0%, #b85a2e 100%); color: var(--white); padding: 150px 0 70px; }
.city-hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.12; margin-bottom: 18px; max-width: 880px; }
.city-hero h1 span { color: var(--gold); font-style: italic; }
.city-hero p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 640px; line-height: 1.7; margin-bottom: 30px; }
.city-hero .hero-btns { justify-content: flex-start; }
.eyebrow { display: inline-block; font-size: 13px; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 14px; font-weight: 600; }

/* breadcrumb */
.breadcrumb { background: var(--dark); color: rgba(255,255,255,.6); font-size: 13px; padding: 12px 0; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* INFO BAR */
.info-bar { background: var(--dark); color: var(--white); padding: 36px 0; }
.info-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; text-align: center; }
.info-item h4 { font-size: 17px; margin-bottom: 8px; color: var(--gold); }
.info-item p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; }
.info-item a { color: rgba(255,255,255,.72); transition: color .2s; }
.info-item a:hover { color: var(--gold); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: linear-gradient(150deg, var(--olive) 0%, var(--olive-dark) 100%); color: var(--white); }
.section-cream { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag { display: inline-block; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.section-dark .section-header .tag { color: var(--gold); }
.section-header h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; line-height: 1.15; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 16px; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,.6); }

/* generic two-column */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; }
.split-media img, .split-media .ph { width: 100%; height: 460px; object-fit: cover; }
.split-text .tag { display: inline-block; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.section-dark .split-text .tag { color: var(--gold); }
.split-text h2 { font-size: clamp(28px,3.4vw,40px); margin-bottom: 18px; line-height: 1.2; }
.split-text p { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.section-dark .split-text p { color: rgba(255,255,255,.7); }
.split-text .highlight { font-size: 20px; color: var(--primary); font-weight: 600; font-style: italic; font-family: 'Playfair Display', serif; }
.section-dark .split-text .highlight { color: var(--gold); }
.checklist { list-style: none; margin: 8px 0 28px; }
.checklist li { padding: 10px 0; font-size: 15px; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid rgba(0,0,0,.07); line-height: 1.5; }
.section-dark .checklist li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.checklist li::before { content: '\2713'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--primary); color: var(--white); border-radius: 50%; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat h3 { font-size: 34px; color: var(--primary); }
.section-dark .stat h3 { color: var(--gold); }
.stat p { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-top: 4px; }

/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.feature-card { text-align: center; padding: 34px 24px; background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: transform .3s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 64px; height: 64px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* MENU */
.menu-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.menu-tab { padding: 12px 28px; border-radius: 50px; border: 2px solid rgba(255,255,255,.2); background: transparent; color: var(--white); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: .2s; font-family: inherit; }
.menu-tab:hover { border-color: var(--gold); }
.menu-tab.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 48px; max-width: 1000px; margin: 0 auto; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.15); gap: 16px; }
.menu-row-info { flex: 1; }
.menu-row h4 { font-size: 19px; margin-bottom: 4px; color: var(--white); }
.menu-row p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.menu-row .price { font-size: 18px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; white-space: nowrap; }

/* SERVICE AREA (neighborhood hub) */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.area-card { display: block; background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); padding: 22px 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.area-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.08); border-color: var(--gold); }
.area-card h3 { font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.area-card .dist { font-size: 13px; color: var(--accent); font-weight: 600; }
.area-card .blurb { font-size: 13px; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.area-card .go { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-top: 12px; display: inline-block; }

/* LOCAL INFO / NAP + map */
.local { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.nap-card { background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.07); padding: 34px; }
.nap-card h3 { font-size: 24px; margin-bottom: 18px; }
.nap-row { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid #eee; font-size: 15px; line-height: 1.5; }
.nap-row:last-child { border-bottom: none; }
.nap-row .ic { font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; }
.nap-row a { color: var(--accent); font-weight: 600; }
.map-embed { border-radius: var(--radius); overflow: hidden; min-height: 360px; border: 0; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* LOYALTY / promo card */
.loyalty-card { max-width: 720px; margin: 0 auto; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border-radius: var(--radius); padding: 44px; text-align: center; box-shadow: 0 14px 40px rgba(74,52,36,.35); position: relative; overflow: hidden; }
.loyalty-card::after { content: ''; position: absolute; inset: 14px; border: 1px dashed rgba(255,255,255,.35); border-radius: 8px; pointer-events: none; }
.loyalty-card .eyebrow { color: var(--gold); }
.loyalty-card h2 { color: var(--white); font-size: clamp(28px,3.4vw,40px); margin-bottom: 14px; }
.loyalty-card p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0 auto 18px; }
.promo-code { display: inline-block; background: rgba(255,255,255,.12); border: 1px dashed var(--gold); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 22px; letter-spacing: 3px; padding: 12px 28px; border-radius: 8px; margin: 8px 0 22px; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: transform .3s; }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15px; line-height: 1.7; color: var(--text-light); font-style: italic; margin-bottom: 18px; }
.review-author { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-source { font-size: 12px; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.section-dark .faq-item { border-color: rgba(255,255,255,.12); }
.faq-q { width: 100%; padding: 20px 0; background: none; border: none; font-family: 'Playfair Display', serif; font-size: 18px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.section-dark .faq-q { color: var(--white); }
.faq-q::after { content: '+'; font-size: 24px; font-family: 'Inter', sans-serif; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-q.active::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: var(--text-light); }
.section-dark .faq-a p { color: rgba(255,255,255,.65); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #8f4a33 0%, #c95f26 100%); padding: 92px 0; text-align: center; color: var(--white); }
.cta-banner h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: .85; margin-bottom: 34px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* FOOTER */
footer { background: var(--dark-bg); color: var(--white); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { font-size: 28px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 16px; }
.footer-col h4 { font-size: 16px; margin-bottom: 16px; color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(168,89,64,.98); flex-direction: column; justify-content: center; align-items: center; gap: 24px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .split, .local { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .split-media img, .split-media .ph { height: 300px; }
  .menu-panel.active { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .city-hero .hero-btns { justify-content: center; }
  .city-hero p { margin-left: auto; margin-right: auto; }
  .city-hero { text-align: center; }
  /* hero: the left-to-right fade doesn't work narrow — centre it, even tint,
     and bias the video so the cup stays in frame */
  .hero-content { text-align: center; }
  .hero h1, .hero p { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-pins { justify-content: center; }
  .hero-overlay { background: linear-gradient(rgba(143,74,51,.9), rgba(143,74,51,.75)); }
  .hero-video { object-position: 58% center; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3,1fr); }
}

/* scroll animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* COOKIE CONSENT BANNER */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; max-width: 940px; margin: 0 auto; background: var(--dark); color: #fff; border-radius: var(--radius); box-shadow: 0 14px 44px rgba(0,0,0,.4); padding: 20px 24px; display: none; flex-wrap: wrap; align-items: center; gap: 14px 24px; opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; }
.cookie-banner.show { display: flex; opacity: 1; transform: translateY(0); }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.85); flex: 1 1 340px; margin: 0; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button { font-family: inherit; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; padding: 11px 24px; border-radius: 50px; cursor: pointer; border: none; transition: background .2s; }
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-dark); }
.cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45) !important; }
.cookie-decline:hover { background: rgba(255,255,255,.1); }
@media (max-width: 600px) { .cookie-actions { flex: 1 1 100%; } .cookie-actions button { flex: 1; } }

/* LEGAL PAGES */
.legal { max-width: 820px; margin: 0 auto; padding: 140px 24px 80px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 8px; }
.legal .updated { color: var(--text-light); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; color: var(--ink); }
.legal h3 { font-size: 17px; margin: 20px 0 8px; color: var(--primary); }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal .intro-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 6px; font-size: 14px; }








/* ---- condensed auto-scrolling photo band (no heading, just flows) ---- */
.gallery-band { padding: 30px 0; background: var(--white); }
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after { content:""; position:absolute; top:0; bottom:0; width:70px; z-index:2; pointer-events:none; }
.marquee::before { left:0; background:linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right:0; background:linear-gradient(270deg, var(--white), transparent); }
.marquee-track { display:flex; gap:12px; width:max-content; }
.marquee-track.is-ready { animation: tt-marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track figure { margin:0; flex:0 0 auto; border-radius:10px; overflow:hidden; cursor:zoom-in; background:var(--cream-2); }
.marquee-track img { width:250px; height:165px; object-fit:cover; display:block; }
@keyframes tt-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width:600px){ .marquee-track img { width:180px; height:125px; } .marquee::before,.marquee::after { width:36px; } }
@media (prefers-reduced-motion: reduce){
  .marquee-track, .marquee-track.is-ready { animation: none; }
  .marquee { overflow-x: auto; }
}

/* lightbox */
.lightbox { position:fixed; inset:0; z-index:400; background:rgba(58,34,22,.92); display:none; align-items:center; justify-content:center; padding:24px; }
.lightbox.open { display:flex; }
.lightbox img { max-width:min(1100px,94vw); max-height:88vh; width:auto; height:auto; border-radius:10px; }
.lightbox-close { position:absolute; top:18px; right:22px; width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.14); color:#fff; border:none; font-size:24px; cursor:pointer; line-height:1; }
.lightbox-close:hover { background:rgba(255,255,255,.26); }
