/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --fg:        #f5f5f0;
  --gold:      #c9a227;
  --border:    #262626;
  --muted:     #999999;
  --secondary: #1f1f1f;
  --serif:     'Cormorant Garamond', serif;
  --sans:      'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body.jlt-page {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.jlt-page ::selection { background: var(--gold); color: var(--bg); }
body.jlt-page #wpadminbar { display: none !important; }

/* ── NAVBAR ── */
.jlt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.6s ease, padding 0.5s ease;
}
.jlt-nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1rem 3rem;
}
.jlt-nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
}
.jlt-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.jlt-nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.jlt-nav-links a:hover { color: var(--fg); }

.jlt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.jlt-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fg);
  transition: all 0.3s;
}
.jlt-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.jlt-mobile-menu.open { display: flex; }
.jlt-mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.3s;
}
.jlt-mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.jlt-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 112px;
  height: calc(100vh - 112px);
}
.jlt-hero-bg { position: absolute; inset: 0; z-index: 0; }
.jlt-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.jlt-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.42);
}
.jlt-hero-fade-top {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
  z-index: 2; pointer-events: none;
}
.jlt-hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  z-index: 2; pointer-events: none;
}
.jlt-hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem;
}
.jlt-hero-sub {
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.jlt-hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400; letter-spacing: -0.02em; color: var(--fg);
  white-space: nowrap; opacity: 0; animation: fadeUp 1.4s 0.2s forwards;
}
.jlt-hero-title em { font-style: italic; color: #fff; }
.jlt-scroll-hint {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeIn 1s 2s forwards;
}
.jlt-scroll-hint span { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.jlt-scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.jlt-scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: var(--fg);
  animation: scrollDown 1.5s linear infinite;
}

/* ── ABOUT ── */
.jlt-about { padding: 8rem 3rem; background: var(--bg); }
.jlt-about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.jlt-about-images { display: flex; flex-direction: column; gap: 0; position: relative; }
.jlt-about-img-wrap { position: relative; overflow: hidden; }
.jlt-about-img-wrap img {
  width: 100%; height: auto; object-fit: cover;
  filter: grayscale(100%) contrast(1.1); display: block;
}
.jlt-about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 60%);
}
.jlt-about-img-label {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(201,162,39,0.8);
}
.jlt-about-img-secondary {
  position: relative; overflow: hidden; margin-left: 3rem; margin-top: -3rem;
  border: 1px solid rgba(38,38,38,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.jlt-about-img-secondary img {
  width: 100%; height: 200px; object-fit: cover; object-position: top; display: block;
}
.jlt-about-img-secondary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
}
.jlt-about-img-secondary-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(201,162,39,0.8);
}
.jlt-about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.jlt-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.jlt-about-quote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400; line-height: 1.5; color: rgba(245,245,240,0.92);
}
.jlt-about-body { font-size: 0.9rem; line-height: 1.85; color: var(--muted); display: flex; flex-direction: column; gap: 1rem; }

/* ── BIOGRAPHY ── */
.jlt-biography { padding: 8rem 3rem; background: var(--bg); }
.jlt-biography-inner { max-width: 900px; margin: 0 auto; }
.jlt-section-header { margin-bottom: 5rem; }
.jlt-section-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--fg); margin-top: 1rem; }
.jlt-divider { height: 1px; background: var(--border); margin-top: 2rem; }

.jlt-timeline { position: relative; }
.jlt-timeline::before {
  content: ''; position: absolute; left: 108px; top: 0; bottom: 0;
  width: 1px; background: rgba(38,38,38,0.6);
}
.jlt-milestone { display: flex; gap: 3rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(38,38,38,0.4); align-items: flex-start; }
.jlt-milestone-year {
  width: 108px; flex-shrink: 0; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); padding-top: 0.35rem; position: relative;
}
.jlt-milestone-year::after {
  content: ''; position: absolute; right: -8px; top: 0.6rem;
  width: 7px; height: 7px; border-radius: 50%; background: rgba(201,162,39,0.5);
}
.jlt-milestone-body { flex: 1; padding-left: 2rem; }
.jlt-milestone-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--fg); margin-bottom: 0.6rem; transition: color 0.4s; }
.jlt-milestone:hover .jlt-milestone-body h3 { color: var(--gold); }
.jlt-milestone-body p { font-size: 0.9rem; line-height: 1.8; color: var(--muted); }

/* ── VIDEO ── */
.jlt-video { padding: 8rem 3rem; background: rgba(255,255,255,0.02); }
.jlt-video-inner { max-width: 960px; margin: 0 auto; }
.jlt-video-frame {
  position: relative; aspect-ratio: 16/9; background: rgba(0,0,0,0.6);
  border: 1px solid rgba(38,38,38,0.4); overflow: hidden; margin-top: 3rem;
}
.jlt-video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(20,18,14,0.9));
}
.jlt-video-placeholder p { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.jlt-video-placeholder h3 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400; color: var(--fg); }
.jlt-play-btn {
  display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 2rem;
  border: 1px solid rgba(201,162,39,0.6); background: none; color: var(--gold);
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; cursor: pointer; transition: all 0.4s; text-decoration: none;
}
.jlt-play-btn:hover { background: var(--gold); color: var(--bg); }
.jlt-play-icon { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 9px solid currentColor; }
.jlt-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.jlt-video-caption { text-align: center; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 2rem; }

/* ── SELECTED WORKS ── */
.jlt-works { padding: 6rem 3rem; background: var(--bg); }
.jlt-works-inner { max-width: 1100px; margin: 0 auto; }
.jlt-works-grid { display: flex; flex-direction: column; gap: 6rem; margin-top: 4rem; }
.jlt-work-item { display: flex; flex-direction: column; }
.jlt-work-item.left   { align-items: flex-start; }
.jlt-work-item.right  { align-items: flex-end; }
.jlt-work-item.center { align-items: center; }
.jlt-work-img { width: 60%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.jlt-work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.jlt-work-item:hover .jlt-work-img img { transform: scale(1.04); }
.jlt-work-info { margin-top: 1.5rem; }
.jlt-work-item.right  .jlt-work-info { text-align: right; }
.jlt-work-item.center .jlt-work-info { text-align: center; }
.jlt-work-info h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--fg); margin-bottom: 0.4rem; }
.jlt-work-info .year { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ── APPEARANCES ── */
.jlt-appearances { padding: 8rem 3rem; background: rgba(255,255,255,0.015); }
.jlt-appearances-inner { max-width: 900px; margin: 0 auto; }
.jlt-appearance-row {
  display: flex; align-items: baseline; gap: 2rem;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(38,38,38,0.5); transition: border-color 0.4s;
}
.jlt-appearance-row:hover { border-color: rgba(201,162,39,0.4); }
.jlt-appearance-year { width: 80px; flex-shrink: 0; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.jlt-appearance-main { flex: 1; }
.jlt-appearance-main h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--fg); transition: color 0.4s; }
.jlt-appearance-row:hover .jlt-appearance-main h3 { color: var(--gold); }
.jlt-appearance-main p { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.jlt-appearance-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.jlt-gallery { padding: 8rem 3rem; background: var(--bg); }
.jlt-gallery-inner { max-width: 1400px; margin: 0 auto; }

/* Masonry columns */
.jlt-gallery-grid {
  columns: 2;
  column-gap: 10px;
  margin-top: 4rem;
}
@media (min-width: 640px)  { .jlt-gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .jlt-gallery-grid { columns: 4; } }

.jlt-gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.jlt-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.jlt-gallery-item:hover img { transform: scale(1.06); }

.jlt-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.5s ease, background 0.5s ease;
}
.jlt-gallery-item:hover .jlt-gallery-overlay {
  background: rgba(10,10,10,0.55);
  opacity: 1;
}
.jlt-gallery-overlay-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--fg);
  text-align: center;
  padding: 0 0.5rem;
}
.jlt-gallery-overlay-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LIGHTBOX ── */
.jlt-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.97);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.jlt-lightbox.open { display: flex; }

.jlt-lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jlt-lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  transition: opacity 0.25s ease;
}
.jlt-lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
}
.jlt-lightbox-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--fg);
}
.jlt-lightbox-caption span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
  display: block;
}
.jlt-lightbox-counter {
  position: absolute;
  top: -2rem;
  left: 0;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* Close button */
.jlt-lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: var(--fg);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  line-height: 1;
}
.jlt-lb-close:hover { border-color: var(--gold); color: var(--gold); }

/* Prev / Next */
.jlt-lb-prev,
.jlt-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  color: var(--fg);
  font-size: 1.6rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.jlt-lb-prev { left: 1rem; }
.jlt-lb-next { right: 1rem; }
.jlt-lb-prev:hover,
.jlt-lb-next:hover { border-color: var(--gold); color: var(--gold); }

/* ── TESTIMONIALS ── */
.jlt-testimonials { padding: 8rem 3rem; background: var(--bg); }
.jlt-testimonials-inner { max-width: 1100px; margin: 0 auto; }
.jlt-testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(38,38,38,0.3); margin-top: 5rem;
}
.jlt-testimonial-card {
  background: var(--bg); padding: 3.5rem;
  display: flex; flex-direction: column; gap: 2rem;
  border: 1px solid rgba(38,38,38,0.25); transition: border-color 0.6s;
}
.jlt-testimonial-card:hover { border-color: rgba(201,162,39,0.25); }
.jlt-quote-mark { font-family: var(--serif); font-size: 4rem; color: rgba(201,162,39,0.3); line-height: 1; }
.jlt-testimonial-text { font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; color: rgba(245,245,240,0.88); }
.jlt-testimonial-author { border-top: 1px solid rgba(38,38,38,0.4); padding-top: 1.25rem; }
.jlt-testimonial-author strong { display: block; font-family: var(--sans); font-size: 0.85rem; color: var(--fg); font-weight: 500; }
.jlt-testimonial-author span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; display: block; }

/* ── CONTACT ── */
.jlt-contact { padding: 8rem 3rem; background: rgba(255,255,255,0.015); }
.jlt-contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.jlt-contact-sub { font-size: 0.8rem; line-height: 1.8; color: var(--muted); margin: 1.5rem 0 3rem; }
.jlt-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.jlt-field {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--fg); font-family: var(--sans); font-size: 0.85rem;
  padding: 0.9rem 1.2rem; outline: none; transition: border-color 0.3s;
}
.jlt-field::placeholder { color: var(--muted); }
.jlt-field:focus { border-color: rgba(201,162,39,0.5); }
textarea.jlt-field { resize: vertical; min-height: 130px; }
.jlt-submit {
  width: 100%; background: none; border: 1px solid rgba(201,162,39,0.6);
  color: var(--gold); font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1rem; cursor: pointer; transition: all 0.4s; margin-top: 0.5rem;
}
.jlt-submit:hover { background: var(--gold); color: var(--bg); }

/* ── FOOTER ── */
.jlt-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 3rem; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 768px) { .jlt-footer { flex-direction: row; } }
.jlt-footer-brand { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg); }
.jlt-footer-links { display: flex; gap: 2rem; }
.jlt-footer-links a { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.jlt-footer-links a:hover { color: var(--fg); }
.jlt-footer-copy { font-size: 0.7rem; color: var(--muted); }

/* ── REVEAL ANIMATION ── */
.jlt-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.jlt-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollDown { from { transform:translateY(-100%); } to { transform:translateY(100%); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .jlt-nav { padding: 1.25rem 1.5rem; }
  .jlt-nav-links { display: none; }
  .jlt-hamburger { display: flex; }
  .jlt-hero-title { font-size: clamp(1.8rem,8vw,3.5rem); white-space: normal; }
  .jlt-about-inner { grid-template-columns: 1fr; }
  .jlt-about-img-secondary { margin-left: 2rem; }
  .jlt-timeline::before { display: none; }
  .jlt-milestone { flex-direction: column; gap: 0.5rem; }
  .jlt-milestone-year { width: auto; }
  .jlt-milestone-year::after { display: none; }
  .jlt-milestone-body { padding-left: 0; }
  .jlt-work-img { width: 100%; }
  .jlt-testimonials-grid { grid-template-columns: 1fr; }
  .jlt-about, .jlt-biography, .jlt-video, .jlt-works,
  .jlt-appearances, .jlt-gallery, .jlt-testimonials, .jlt-contact { padding: 5rem 1.5rem; }
  .jlt-footer { padding: 2rem 1.5rem; }
}

/* ── EPK SECTION ── */
.jlt-epk { padding: 6rem 3rem; background: rgba(31,31,31,0.5); position: relative; }
.jlt-epk-inner { max-width: 1000px; margin: 0 auto; }
.jlt-epk-subtitle { font-family: var(--sans); font-size: 1rem; letter-spacing: 0.15em; font-style: italic; font-weight: 300; color: var(--muted); margin-top: 0.5rem; }
.jlt-epk-rule { width: 6rem; height: 1px; background: var(--gold); margin: 2rem auto 0; }
.jlt-epk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 5rem; margin-top: 3.5rem; }
.jlt-epk-bio p { font-family: var(--sans); font-size: 0.9rem; line-height: 1.85; color: rgba(245,245,240,0.78); margin-bottom: 1.2rem; }
.jlt-epk-appearances .jlt-label { margin-bottom: 1.25rem; }
.jlt-epk-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.jlt-epk-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-family: var(--sans); font-size: 0.85rem; line-height: 1.6; color: rgba(245,245,240,0.78); }
.jlt-epk-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.45rem; }
.jlt-epk-list strong { color: var(--fg); }
.jlt-epk-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.jlt-epk-footer p { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.jlt-epk-cta { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,162,39,0.4); padding: 0.75rem 1.75rem; text-decoration: none; transition: background 0.3s, color 0.3s; }
.jlt-epk-cta:hover { background: var(--gold); color: var(--bg); }

/* ── YOUTUBE THUMBNAIL PLAYER ── */
.jlt-yt-thumb { position: relative; width: 100%; height: 100%; display: block; border: none; padding: 0; background: #000; cursor: pointer; }
.jlt-yt-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jlt-yt-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); transition: background 0.4s; }
.jlt-yt-thumb:hover .jlt-yt-overlay { background: rgba(0,0,0,0.15); }
.jlt-yt-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: transform 0.4s, background 0.4s; }
.jlt-yt-thumb:hover .jlt-yt-play-icon { transform: translate(-50%,-50%) scale(1.12); background: rgba(255,255,255,0.2); }
.jlt-play-triangle { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 24px solid white; margin-left: 5px; }

/* ── GALLERY LOAD MORE ── */
.jlt-hidden { display: none !important; }
.jlt-load-more-wrap { display:flex; justify-content:center; margin-top:3.5rem; }
.jlt-load-more-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--fg);
  background: transparent;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.jlt-load-more-btn:hover { border-color: var(--gold); color: var(--gold); }
