/* ══════════════════════════════════════════════════
   JAGALI ARTSPACE — VOICES SECTION  (voices.css)
   Matches the Visual System from STYLE SYSTEM V13
══════════════════════════════════════════════════ */

/* ── ROOT TOKENS (mirrors main style.css) ── */
:root {
  --dark-bg:    #100b07;
  --dark-bg2:   #1a120c;
  --dark-bg3:   #241810;
  --dark-text:  #f4ede3;
  --dark-muted: #b8a898;
  --dark-faint: #6a5a4e;

  --light-bg:   #faf5ed;
  --light-bg2:  #f3ebe0;
  --light-text: #1e140e;
  --light-mid:  #6a5040;

  --gold:         #c49a52;
  --gold-bright:  #e4b96a;
  --gold-dim:     #7a5e2e;
  --gold-glow:    rgba(196,154,82,0.22);
  --maroon:       #8a2424;
  --maroon-light: #b03030;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Josefin Sans', sans-serif;
  --f-script:  'Marck Script', cursive;
  --f-hand:    'Caveat', cursive;

  --ease:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad:      6vw;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-font-smoothing:antialiased; }
html { scroll-behavior:smooth; }
body { background:var(--dark-bg); color:var(--dark-text); font-family:var(--f-ui); overflow-x:hidden; }


/* ══════════════════════════════════════════════════
   NAVIGATION BAR STYLES
══════════════════════════════════════════════════ */
.jagali-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(16, 11, 7, 0.95); /* Matches --dark-bg with slight transparency */
  border-bottom: 1px solid rgba(196, 154, 82, 0.15);
  backdrop-filter: blur(10px);
  padding: 0 var(--pad);
}

.nav-container {
  max-width: 1300px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Section */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

.nav-brand:hover {
  opacity: 0.8;
}

.brand-img {
  width: 45px;
  height: auto;
  filter: sepia(0.2);
}

.brand-name {
  font-family: var(--f-ui);
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--dark-text);
  font-weight: 300;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark-muted);
  font-weight: 300;
  transition: all 0.3s var(--ease);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--gold);
}

/* Hover underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Responsive Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 20px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .nav-links { display: none; } /* Hide links on mobile for a burger menu */
  .nav-toggle { display: flex; }
  .nav-container { height: 65px; }
}

/* ══════════════════════════════════════════════════
   VOICES SECTION — WRAPPER
══════════════════════════════════════════════════ */
.voices-section {
  position: relative;
  padding: 130px var(--pad) 100px;
  background: var(--dark-bg);
  overflow: hidden;
}

/* ── Mandala Background ── */
.vcs-mandala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
  animation: vcsMandalaRotate 180s linear infinite;
}
.vcs-mandala-bg svg {
  width: 100%;
  height: 100%;
}
@keyframes vcsMandalaRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Floating Art Icons ── */
.vcs-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.vf-icon {
  position: absolute;
  opacity: 0.06;
  filter: sepia(0.3);
  animation: vfFloat 10s ease-in-out infinite;
}
.vf-i1 { width:90px;  top:6%;   left:3%;  animation-delay:0s;    animation-duration:12s; }
.vf-i2 { width:70px;  top:12%;  right:4%; animation-delay:1.5s;  animation-duration:10s; }
.vf-i3 { width:80px;  top:42%;  left:1%;  animation-delay:3s;    animation-duration:14s; }
.vf-i4 { width:70px;  top:36%;  right:2%; animation-delay:2s;    animation-duration:11s; }
.vf-i5 { width:80px;  top:75%;  left:4%;  animation-delay:4s;    animation-duration:13s; }
.vf-i6 { width:80px;  top:70%;  right:3%; animation-delay:1s;    animation-duration:9s;  }

@keyframes vfFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(4deg); }
  66%      { transform: translateY(8px) rotate(-3deg); }
}

/* ══════════════════════════════════════════════════
   SECTION TAG
══════════════════════════════════════════════════ */
.section-tag {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
}
.section-tag.light { color: var(--gold); }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.vcs-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 52px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vcs-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}
.vcs-eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.vcs-header h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.08;
  margin-bottom: 16px;
}
.vcs-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.vcs-sub {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--dark-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── Rating Summary ── */
.vcs-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.vcs-stars {
  display: flex;
  gap: 3px;
}
.vcs-stars svg { width: 14px; height: 14px; }
.vcs-rating-num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--dark-text);
  font-weight: 400;
  line-height: 1;
}
.vcs-rating-from {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dark-faint);
}

/* ══════════════════════════════════════════════════
   FILTER PILLS
══════════════════════════════════════════════════ */
.vcs-filters {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.vcf-pill {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dark-muted);
  border: 1px solid rgba(196,154,82,.18);
  background: transparent;
  padding: 10px 22px;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-transform: uppercase;
}
.vcf-pill:hover,
.vcf-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,82,.06);
}
.vcf-pill.active {
  background: rgba(196,154,82,.1);
}

/* ══════════════════════════════════════════════════
   FEATURED HERO CARD
══════════════════════════════════════════════════ */
.vcs-featured-wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto 60px;
}

.vcs-featured-card {
  position: relative;
  background: linear-gradient(135deg, rgba(196,154,82,.07), rgba(196,154,82,.02));
  border: 1px solid rgba(196,154,82,.28);
  padding: 60px 64px 52px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  transition: border-color .5s var(--ease);
}
.vcs-featured-card:hover {
  border-color: rgba(196,154,82,.45);
}

/* bottom gold line sweep */
.vcs-featured-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .8s var(--ease);
}
.vcs-featured-card:hover::after { width: 100%; }

.vcsf-quote-mark {
  font-family: var(--f-display);
  font-size: 140px;
  line-height: 1;
  color: rgba(196,154,82,.14);
  align-self: flex-start;
  margin-top: -24px;
  flex-shrink: 0;
  user-select: none;
}

.vcsf-body { flex: 1; }

.vcsf-text {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.vcsf-attribution {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vcsf-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.vcsf-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(0.3) brightness(0.85);
  border-radius: 50%;
}
.vcsf-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,82,.4);
  animation: vcsRingPulse 3s ease-in-out infinite;
}
@keyframes vcsRingPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.08); }
}

.vcsf-who { flex: 1; }
.vcsf-who strong {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--dark-text);
  display: block;
  margin-bottom: 4px;
  font-weight: 300;
}
.vcsf-who > span {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--dark-faint);
  display: block;
  margin-bottom: 8px;
}
.vcsf-stars { display: flex; gap: 4px; }
.vcsf-stars svg { width: 12px; height: 12px; }

.vcsf-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(196,154,82,.22);
  padding: 12px 18px;
  flex-shrink: 0;
}
.vcsf-badge-icon { width: 30px; opacity: 0.7; }
.vcsf-badge span {
  font-family: var(--f-ui);
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 300;
}

.vcsf-art-accent {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.vcsf-accent-img {
  width: 72px;
  opacity: 0.18;
  filter: sepia(0.4);
}

/* ══════════════════════════════════════════════════
   BENTO GRID
══════════════════════════════════════════════════ */
.vcs-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 80px;
}

/* Tall card spans 2 rows */
.vc-card--tall {
  grid-row: span 2;
}

/* ── Base Card ── */
.vc-card {
  position: relative;
  padding: 38px 32px 30px;
  border: 1px solid rgba(196,154,82,.14);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
  cursor: default;
}
.vc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,82,.32);
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
}

/* Dark variant */
.vc-card--dark {
  background: rgba(255,255,255,.018);
}

/* Light variant */
.vc-card--light {
  background: var(--light-bg);
}
.vc-card--light blockquote {
  color: var(--light-mid) !important;
}
.vc-card--light .vcc-who strong {
  color: var(--light-text) !important;
}
.vc-card--light .vcc-who span {
  color: var(--light-mid) !important;
}

/* Golden sweep line bottom */
.vc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .6s var(--ease);
}
.vc-card:hover::after { width: 100%; }

/* Card Top Row */
.vcc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vcc-quote-char {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 0.5;
  color: rgba(196,154,82,.2);
  user-select: none;
  flex-shrink: 0;
}
.vcc-quote--maroon { color: rgba(138,36,36,.15); }

.vcc-stars {
  display: flex;
  gap: 3px;
  padding-top: 4px;
}
.vcc-stars svg { width: 11px; height: 11px; }

/* Pull quote — only used in tall card */
.vcc-pull-quote {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--dark-text);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.vc-card--light .vcc-pull-quote { color: var(--light-text); }

/* Blockquote */
.vc-card blockquote {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 26px;
  flex: 1;
}

/* Footer */
.vcc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.vcc-avatar { flex-shrink: 0; }
.vcc-av-inner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 17px;
  border: 1px solid rgba(196,154,82,.2);
}

.vcc-who { flex: 1; }
.vcc-who strong {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dark-text);
  display: block;
  margin-bottom: 3px;
  font-weight: 300;
}
.vcc-who span {
  font-family: var(--f-ui);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--dark-faint);
  display: block;
  margin-bottom: 5px;
}
.vcc-tag {
  font-family: var(--f-ui);
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--gold);
  background: rgba(196,154,82,.08);
  border: 1px solid rgba(196,154,82,.2);
  padding: 3px 8px;
  display: inline-block;
  font-style: normal;
  text-transform: uppercase;
}
.vcc-tag--maroon {
  color: var(--maroon);
  background: rgba(138,36,36,.07);
  border-color: rgba(138,36,36,.2);
}

.vcc-art-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Bottom accent bar */
.vcc-art-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.vc-card:hover .vcc-art-bar { width: 100%; }
.vcc-art-bar--maroon { background: var(--maroon); }

/* ── Hidden / filtered state ── */
.vc-card.vcs-hidden {
  display: none;
}

/* ── Scroll reveal animation ── */
.vc-card[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .45s, box-shadow .45s;
}
.vc-card[data-reveal].vcs-revealed {
  opacity: 1;
  transform: translateY(0);
}
.vc-card[data-reveal].vcs-revealed:hover {
  transform: translateY(-6px);
}

/* ══════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════ */
.vcs-marquee-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(196,154,82,.1);
  border-bottom: 1px solid rgba(196,154,82,.1);
  overflow: hidden;
  padding: 22px 0;
  margin-bottom: 80px;
  background: rgba(196,154,82,.025);
}
.vcs-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: vcsMqMove 55s linear infinite;
}
.vcs-marquee-wrap:hover .vcs-marquee-track {
  animation-play-state: paused;
}
@keyframes vcsMqMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vcs-mq-item {
  font-family: var(--f-display);
  font-size: 15px;
  font-style: italic;
  color: var(--dark-muted);
  white-space: nowrap;
}
.vcs-mq-sep {
  color: var(--gold);
  font-size: 12px;
  opacity: .45;
}

/* ══════════════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════════════ */
.vcs-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.vcs-cta-mandala {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.vcs-cta-script {
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--gold);
  opacity: .65;
  display: block;
  margin-bottom: 8px;
}
.vcs-cta-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--dark-text);
  margin-bottom: 14px;
}
.vcs-cta-sub {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.vcs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  background: var(--gold);
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 3px;
  padding: 15px 36px;
  font-weight: 300;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s;
  text-decoration: none;
}
.vcs-cta-btn:hover {
  background: var(--gold-bright);
}
.vcs-cta-btn svg {
  transition: transform .4s var(--ease);
}
.vcs-cta-btn:hover svg {
  transform: translateX(5px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vcs-grid { grid-template-columns: 1fr 1fr; }
  .vc-card--tall { grid-row: auto; }
  .vcs-featured-card { padding: 44px 40px; gap: 22px; }
}

@media (max-width: 768px) {
  .voices-section { padding: 90px var(--pad) 70px; }
  .vcs-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .vcs-featured-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 16px;
  }
  .vcsf-quote-mark { font-size: 80px; }
  .vcsf-art-accent { display: none; }
  .vcs-float-icons { display: none; }
}

@media (max-width: 500px) {
  .vcs-eyebrow { flex-direction: column; gap: 10px; }
  .vcf-pill { font-size: 8px; padding: 8px 14px; letter-spacing: 2px; }
  .vcs-rating-from { display: none; }
  .vcsf-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
