@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #07091a;
  --navy2:   #0d1128;
  --navy3:   #141830;
  --gold:    #c9933a;
  --gold2:   #e8b455;
  --gold3:   #f5d98a;
  --white:   #f5f2eb;
  --muted:   #8a8fa8;
  --border:  rgba(201,147,58,.18);
  --glow:    rgba(201,147,58,.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── STARS BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 8%,  rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 15%, rgba(255,255,255,.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 91% 40%, rgba(255,255,255,.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 6%  55%, rgba(255,255,255,.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 33% 85%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 88%, rgba(255,255,255,.2)  0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold2);
  text-decoration: none;
  letter-spacing: .08em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold2); }

/* ── HERO (main index only) ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 60px;
  overflow: hidden;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,58,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.dove-wrap {
  position: relative;
  margin-bottom: 36px;
}
.dove-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 0 60px rgba(201,147,58,.25), 0 0 120px rgba(201,147,58,.1);
  animation: doveFloat 6s ease-in-out infinite;
}
@keyframes doveFloat {
  0%,100% { transform: translateY(0); box-shadow: 0 0 60px rgba(201,147,58,.25), 0 0 120px rgba(201,147,58,.1); }
  50%      { transform: translateY(-12px); box-shadow: 0 16px 80px rgba(201,147,58,.35), 0 0 140px rgba(201,147,58,.15); }
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .8;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  font-family: 'Crimson Pro', serif;
  color: var(--gold2);
  font-size: 1.08em;
}
.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 52px;
  max-width: 560px;
}
.hero-years {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 24px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 64px;
  background: rgba(201,147,58,.06);
}
.hero-years span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ── SECTION LABEL ── */
.section-label {
  text-align: center;
  margin-bottom: 48px;
}
.section-label h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.section-label p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}

/* ── SERIES GRID (index page) ── */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}
.series-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.series-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,147,58,.18);
  border-color: rgba(201,147,58,.45);
}
.series-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(.8);
  transition: filter .25s;
}
.series-card:hover .series-card-thumb { filter: brightness(1); }
.series-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy3), var(--navy2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.series-card-body { padding: 20px 22px 22px; }
.series-card-count {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.series-card-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.series-card-arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  display: inline-block;
}
.series-card:hover .series-card-arrow { opacity: 1; transform: translateX(4px); }

/* ── VIDEO PAGE HEADER ── */
.page-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 40px 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.page-header .breadcrumb {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.page-header .video-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.page-header .video-count strong { color: var(--gold2); }

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

/* ── VIDEO CARD ── */
.video-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(201,147,58,.2);
  border-color: rgba(201,147,58,.4);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,9,26,.35);
  transition: background .22s;
}
.video-card:hover .play-btn { background: rgba(7,9,26,.15); }
.play-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(201,147,58,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s, background .22s;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.video-card:hover .play-circle {
  transform: scale(1.12);
  background: var(--gold2);
}
.play-triangle {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}
.video-num {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(7,9,26,.75);
  border: 1px solid var(--border);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.video-info { padding: 16px 18px 18px; }
.video-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4,5,14,.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--gold2);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold2);
  margin-bottom: 12px;
  letter-spacing: .1em;
}
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold2); }
.footer-copy { font-size: 12px; color: #3a3d52; }

/* ── SERIES NAV (prev/next) ── */
.series-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.series-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
}
.series-nav a:hover { color: var(--gold2); }
.series-nav .home-btn {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 20px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gold);
  text-decoration: none;
  transition: all .2s;
}
.series-nav .home-btn:hover { background: rgba(201,147,58,.15); color: var(--gold2); }

/* ── RESPONSIVE ── */
@media(max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .series-grid, .video-grid { padding: 0 16px 60px; gap: 16px; }
  .page-header { padding: 40px 20px 32px; }
  .series-nav { padding: 0 16px; }
  .hero { padding: 60px 20px 40px; }
  .dove-img { width: 160px; height: 160px; }
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,147,58,.35); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold2); }
.btn-gold-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  margin-top: 12px;
}
.btn-gold-sm:hover { background: var(--gold2); }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

/* ── CONTENT SECTIONS ── */
.content-section { position: relative; z-index: 1; padding: 80px 0; }
.content-section.alt { background: rgba(255,255,255,.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.content-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img img { width: 100%; border-radius: 8px; object-fit: cover; object-position: top center; max-height: 480px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.two-col-text h2 { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .02em; }
.two-col-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; font-weight: 300; }
.eyebrow-label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

/* ── THREE COL SERVICES ── */
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: var(--navy2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(201,147,58,.15); }
.service-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.service-card-body { padding: 20px 22px 24px; }
.service-icon { font-size: 28px; margin-bottom: 10px; }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── TID BITS ── */
.tidbit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tidbit-card { cursor: pointer; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--navy2); transition: transform .2s, box-shadow .2s; }
.tidbit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(201,147,58,.2); }
.tidbit-thumb { position: relative; aspect-ratio: 16/9; }
.tidbit-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tidbit-label { padding: 12px 16px; font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold2); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); transition: transform .2s, filter .2s; filter: brightness(.85); }
.gallery-grid img:hover { transform: scale(1.03); filter: brightness(1); }

/* ── RESOURCE ROW ── */
.resource-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.resource-card { background: var(--navy2); border: 1px solid var(--border); border-radius: 10px; padding: 32px 28px; text-align: center; transition: transform .2s, box-shadow .2s; }
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(201,147,58,.12); }
.resource-icon { font-size: 36px; margin-bottom: 16px; }
.resource-card h3 { font-family: 'Cinzel', serif; font-size: 17px; color: var(--white); margin-bottom: 10px; }
.resource-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── CONTACT ── */
.contact-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 24px; margin-top: 2px; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 16px; color: var(--white); text-decoration: none; font-weight: 300; }
.contact-value:hover { color: var(--gold2); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.fl label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fl input, .fl textarea {
  width: 100%; padding: 12px 16px;
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 4px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s;
}
.fl input:focus, .fl textarea:focus { border-color: var(--gold); }
.fl textarea { resize: vertical; line-height: 1.6; }

/* ── HEALING PAGE ── */
.healing-hero { position: relative; z-index: 1; padding: 80px 40px; text-align: center; }
.healing-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(32px,5vw,58px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.healing-hero p { font-size: 18px; color: var(--muted); font-family: 'Crimson Pro', serif; font-style: italic; max-width: 600px; margin: 0 auto 40px; }
.healing-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1100px; margin: 0 auto 80px; padding: 0 40px; position: relative; z-index: 1; }
.healing-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }

/* ── ABOUT PAGE ── */
.about-hero { position: relative; z-index: 1; padding: 80px 40px 60px; }
.about-inner { max-width: 1100px; margin: 0 auto; }
.about-intro { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.about-intro img { width: 100%; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.about-text h1 { font-family: 'Cinzel', serif; font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.about-text .subtitle { font-family: 'Crimson Pro', serif; font-size: 20px; color: var(--gold2); font-style: italic; margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.about-text strong { color: var(--white); font-weight: 600; }
.peggy-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.peggy-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .two-col, .contact-row, .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .three-col, .resource-row, .tidbit-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .peggy-grid { grid-template-columns: repeat(2,1fr); }
  .healing-photos { grid-template-columns: 1fr 1fr; }
  .about-intro img { max-width: 320px; }
}
@media(max-width: 600px) {
  .content-inner { padding: 0 20px; }
  .content-section { padding: 52px 0; }
  .three-col, .resource-row, .tidbit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .healing-photos { grid-template-columns: 1fr; padding: 0 20px; }
  .healing-hero { padding: 52px 20px; }
  .about-hero { padding: 52px 20px 40px; }
}
