@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --bg:        #0d0a08;
  --bg-card:   #161009;
  --bg-hover:  #1e1508;
  --border:    #2e2010;
  --gold:      #d4a843;
  --gold-lt:   #f0c96a;
  --gold-dk:   #8a6820;
  --red:       #c0392b;
  --red-lt:    #e74c3c;
  --cream:     #f5ede0;
  --text:      #c8bfb0;
  --text-muted:#7a6e60;
  --radius:    6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,10,8,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-link { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--cream); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(192,57,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(212,168,67,0.12) 0%, transparent 50%),
    var(--bg);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 1.5rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  object-fit: cover;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto; margin-right: auto;
}
.hero-photo-placeholder {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  background: linear-gradient(135deg, var(--red) 0%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--cream);
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bobble 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold-dk), transparent);
}
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5rem; }
.section-lead { color: var(--text-muted); max-width: 560px; margin-bottom: 2.5rem; }

/* Gold divider */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
  margin: 0 auto;
  max-width: 200px;
  margin-bottom: 1rem;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.video-card:hover {
  border-color: var(--gold-dk);
  transform: translateY(-3px);
}
.video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  background: #111;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.3s;
}
.video-card:hover .video-thumb img { opacity: 0.8; }
.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0f05 0%, #2a1a08 100%);
  font-size: 2.5rem; color: var(--gold-dk);
}
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.video-card:hover .play-btn { opacity: 1; }
.play-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,168,67,0.9);
  display: flex; align-items: center; justify-content: center;
  color: #0d0a08; font-size: 1.2rem;
}
.video-duration {
  position: absolute; bottom: 7px; right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff; font-size: 0.72rem;
  padding: 2px 6px; border-radius: 3px;
}
.video-info { padding: 1rem; }
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--cream);
  margin-bottom: 0.3rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.video-meta { font-size: 0.78rem; color: var(--text-muted); }
.video-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 0.5rem; }
.tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold);
}

/* Filter bar */
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold-dk);
  color: var(--gold);
  background: rgba(212,168,67,0.06);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: min(900px, 100vw - 3rem);
  max-height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  border-radius: var(--radius);
  background: #000;
}
.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--cream);
  margin-top: 1rem;
  text-align: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(192,57,43,0.3) 0%, rgba(212,168,67,0.2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--gold-dk);
}
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Empty state */
.empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }

/* Responsive */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link:not(.admin-link) { display: none; }
}
