/* ═══════════════════════════════════════
   CJLT.co — Shared Styles
   Used across all pages
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black:      #080808;
  --dark:       #111111;
  --card:       #181818;
  --border:     #2a2a2a;
  --gold:       #FFB829;
  --gold-light: #FFCA5A;
  --gold-dim:   #B38320;
  --mark-blue:   #5b8fc7;
  --mark-teal:   #4a8a78;
  --mark-red:    #b85c6e;
  --mark-purple: #8b7aa8;
  --white:      #F5F0E8;
  --grey:       #999999;
  --grey-light: #cccccc;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', sans-serif;
  --font-alt:   'Playfair Display', Georgia, serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
::selection { background: var(--gold); color: var(--black); }

/* ── NAV ─────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(20px, 5vw, 60px); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, border-bottom 0.4s;
}
#nav.scrolled { background: rgba(8,8,8,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-alt); font-size: 26px; font-weight: 700; color: var(--gold); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-light); text-decoration: none; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 11px !important; font-weight: 600 !important; color: var(--black) !important; background: var(--gold); padding: 10px 22px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.2em; transition: background 0.3s, transform 0.2s !important; display: inline-block; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(8,8,8,0.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-alt); font-size: 36px; font-weight: 400; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }

/* ── PAGE HERO / BANNER ──────────────── */
.page-hero {
  padding: 160px clamp(20px, 5vw, 80px) 100px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(255,184,41,0.07), transparent); }

.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25) grayscale(30%); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,0.4), rgba(8,8,8,0.7)); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; }
.page-title { font-family: var(--font-alt); font-size: clamp(44px, 7vw, 96px); font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: var(--white); margin-bottom: 24px; }
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 26px); font-style: italic; color: var(--grey-light); line-height: 1.5; }
.page-divider { width: 60px; height: 1px; background: var(--gold); margin: 28px auto; opacity: 0.6; }

/* ── BREADCRUMB ──────────────────────── */
.breadcrumb { padding: 20px clamp(20px, 5vw, 80px); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.breadcrumb a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 11px; color: var(--border); }
.breadcrumb strong { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); font-weight: 500; }

/* ── SHARED SECTION STYLES ───────────── */
section { padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px); }
.section-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; }
.section-divider { width: 60px; height: 1px; background: var(--gold); margin-bottom: 32px; opacity: 0.6; }
.section-title { font-family: var(--font-alt); font-size: clamp(32px, 4.5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--grey-light); }

/* ── BUTTONS ─────────────────────────── */
.btn-primary { display: inline-block; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; padding: 16px 36px; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,184,41,0.3); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; padding: 15px 36px; border: 1px solid rgba(255,255,255,0.25); transition: border-color 0.3s, color 0.3s, transform 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { display: inline-block; background: transparent; color: var(--gold); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--gold-dim); transition: border-color 0.3s, padding 0.3s; }
.btn-ghost:hover { border-color: var(--gold); padding-right: 12px; }

/* ── CARDS ───────────────────────────── */
.card { background: var(--card); border: 1px solid var(--border); padding: 40px 36px; transition: border-color 0.3s, transform 0.3s var(--ease-out); }
.card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.card-title { font-family: var(--font-alt); font-size: 24px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.card-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.card-body { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--grey); }

/* ── TICKER ──────────────────────────── */
.ticker { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 38s linear infinite; }
.ticker-item { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); padding: 0 36px; }
.ticker-sep { font-size: 8px; opacity: 0.65; margin: 0 4px; vertical-align: middle; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── REVEAL ANIMATION ────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ──────────────────────────── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px clamp(20px, 5vw, 80px) 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-logo { font-family: var(--font-alt); font-size: 36px; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; display: block; margin-bottom: 16px; text-decoration: none; }
.footer-brand-desc { font-size: 13px; font-weight: 300; color: var(--grey); line-height: 1.8; margin-bottom: 24px; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--grey); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 11px; color: var(--grey); }
.footer-copy a { color: var(--gold-dim); text-decoration: none; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: var(--grey); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }
.social-link { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--grey); transition: border-color 0.3s, color 0.3s, background 0.3s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,184,41,0.08); }

/* ── BACK TO TOP ─────────────────────── */
.back-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 50; }
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ──────────────────────── */
/* ── TABLET (1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-title { font-size: clamp(36px, 6vw, 72px); }
}
/* ── MOBILE (768px) ─────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 120px clamp(16px, 4vw, 40px) 80px; }
  .page-title { font-size: clamp(32px, 9vw, 56px); }
  .section-title { font-size: clamp(26px, 7vw, 48px); }
  .breadcrumb { padding: 16px clamp(16px, 4vw, 40px); }
  section { padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 40px); }
}
/* ── SMALL MOBILE (480px) ───────────────── */
@media (max-width: 480px) {
  .page-title { font-size: clamp(28px, 10vw, 44px); }
  .page-subtitle { font-size: 15px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 10px; }
  .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ── BACKGROUND VIDEO CONTROLS ──────────── */
.bg-video-ctrl {
  position: absolute;
  bottom: 20px; left: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.page-hero:hover .bg-video-ctrl,
.bg-video-ctrl:focus-within { opacity: 1; }
.bvc-btn {
  width: 38px; height: 38px;
  background: rgba(8,8,8,0.72);
  border: 1px solid rgba(255,184,41,0.35);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.bvc-btn:hover { background: rgba(255,184,41,0.2); border-color: var(--gold); }
.bvc-btn svg { pointer-events: none; }
.bvc-vol {
  width: 72px; height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.bvc-vol-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  pointer-events: none;
  width: 100%;
  transition: width 0.1s;
}
@media (max-width: 768px) {
  .bg-video-ctrl { opacity: 1; bottom: 14px; right: 14px; }
  .bvc-vol { width: 48px; }
}
