/* =========================================================
   SANGEETHA DHARA 2.0 — DESIGN TOKENS
   ========================================================= */
:root{
  --wine-deep:      #4A0A16;
  --wine:           #6D0F1F;
  --wine-bright:    #8A1B2D;
  --charcoal:       #1B1512;
  --cream:          #F8F1E1;
  --cream-soft:     #FBF6EA;
  --gold:           #C89B3C;
  --gold-light:     #F5D76E;
  --gold-gradient:  linear-gradient(135deg, #B8860B, #F5D76E, #D4AF37, #FFF1A8, #B8860B);
  --white:          #FFFFFF;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-script:    'Pinyon Script', cursive;
  --font-body:      'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ text-decoration: none; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--wine-deep);
  margin: 0;
}

.section-kicker{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-gold{
  background: var(--gold-gradient);
  background-size: 220% 220%;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 24px rgba(184,134,11,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-position 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold:hover{
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184,134,11,0.45);
  color: var(--charcoal);
}

.btn-outline-wine{
  border: 1.5px solid var(--wine);
  color: var(--wine);
  font-weight: 700;
  padding: 0.7rem 1.9rem;
  border-radius: 999px;
  background: transparent;
  transition: all 0.25s ease;
}
.btn-outline-wine:hover{
  background: var(--wine);
  color: var(--cream);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,241,225,0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,155,60,0.35);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 10px 26px rgba(74,10,22,0.14);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 1rem;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .header-inner{ padding: 0.4rem 0; }

.logo-slot{ flex: 0 0 auto; display: flex; align-items: center; }
.logo-slot img{
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .logo-slot img{ height: 46px; }

.navbar-toggler{
  border: none;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler:focus{ box-shadow: none; }
.toggler-bar{
  width: 24px;
  height: 2px;
  background: var(--wine-deep);
  display: block;
}

/* This site does not use Bootstrap's navbar-expand-* behaviour (the nav
   menu sits inline in the header between the two logos instead), so
   visibility of the hamburger button and the mobile collapse panel is
   controlled explicitly here rather than relying on Bootstrap's
   expand-breakpoint classes, which would otherwise force .navbar-collapse
   to display:flex at lg+ regardless of the d-lg-none utility (a
   higher-specificity Bootstrap rule wins). */
@media (min-width: 992px){
  .navbar-toggler{ display: none; }
  .navbar-collapse{ display: none !important; }
}
@media (max-width: 991.98px){
  .navbar-collapse:not(.show){ display: none; }
}

/* Desktop menu — sits centered between the two logos, no block background;
   an underline grows from the centre on hover/active for a lighter,
   "premium" feel instead of a solid colour bar. */
.desktop-menu{
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  min-width: 0;
}
.desktop-menu .nav-item{ display: flex; }
.desktop-menu .nav-link{
  position: relative;
  color: var(--wine-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.05rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.desktop-menu .nav-link::after{
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}
.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active{ color: var(--wine); }
.desktop-menu .nav-link:hover::after,
.desktop-menu .nav-link.active::after{ left: 0; right: 0; }

.mobile-nav .nav-link{
  color: var(--wine-deep);
  font-weight: 600;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200,155,60,0.2);
}

@media (max-width: 1150px){
  .desktop-menu{ gap: 0.35rem 1rem; }
  .desktop-menu .nav-link{ font-size: 0.74rem; }
}

@media (max-width: 991.98px){
  .logo-slot img{ height: 42px; }
  .header-inner{ padding: 0.5rem 0; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,10,15,0.55) 0%, rgba(26,10,15,0.78) 55%, rgba(26,10,15,0.94) 100%);
}

.hero-content{
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
  max-width: 880px;
}

.hero-church{
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.hero-presents{
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-title{
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-title-accent{ color: var(--cream); }

.hero-subtitle{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-message{
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(248,241,225,0.92);
}

.hero-cta{ margin-bottom: 2.2rem; }

.hero-venue{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(248,241,225,0.85);
}
.venue-divider{
  width: 1px;
  height: 14px;
  background: rgba(200,155,60,0.5);
  align-self: center;
  display: none;
}
@media (min-width: 768px){
  .venue-divider{ display: inline-block; }
}

.scroll-cue{
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 1.3rem;
  z-index: 1;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 8px); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section{
  padding: 3rem 0;
  background: var(--cream-soft);
  text-align: center;
}
.about-copy{
  text-align: justify;
  font-size: 1.05rem;
  color: #3a2c26;
}
.about-copy p{ margin-bottom: 1.2rem; }

/* =========================================================
   EVENT DETAILS
   ========================================================= */
.event-details-section{
  padding: 3rem 0 0;
  background: var(--wine-deep);
  color: var(--cream);
}
.event-details-section .section-kicker{ color: var(--gold-light); }
.event-details-section .section-title{ color: var(--cream); }
.event-image-wrap{
  width: 100%;
  line-height: 0;
}
.event-image{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   SANGEETHA DHARA 2.0 SECTION
   ========================================================= */
.sd2-section{
  padding: 3rem 0 1.5rem;
  background: var(--cream-soft);
}
.sd2-image-frame{
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(74,10,22,0.15);
  margin-bottom: 2.2rem;
}
.sd2-image-frame img{
  border-radius: 3px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 25%;
}
@media (min-width: 768px){
  .sd2-image-frame img{ height: 420px; }
}

.sd2-text p{ color: #3a2c26; text-align: justify; }

.charity-section{
  padding: 1rem 0 3rem;
  background: var(--cream-soft);
}
.charity-block{
  padding: 2.2rem 2rem 2rem;
  background: var(--wine-deep);
  border-radius: 8px;
  color: var(--cream);
  position: relative;
}
.charity-quote-icon{
  font-size: 1.6rem;
  color: var(--gold-light);
}
.charity-verse{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0.4rem 0 1.2rem;
}
.charity-verse span{
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}
.charity-heading{
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.charity-block p{ color: rgba(248,241,225,0.9); }

/* =========================================================
   FOUNDERS
   ========================================================= */
.founders-section{
  padding: 3rem 0;
  background: var(--cream);
}
.founder-card{ text-align: center; }
.founder-photo{
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(74,10,22,0.15);
  transition: transform 0.3s ease;
}
.founder-card:hover .founder-photo{ transform: translateY(-6px); }
.founder-photo img{ width: 100%; height: 100%; object-fit: cover; }
.founder-name{ font-size: 1.1rem; margin-bottom: 0.15rem; }
.founder-role{
  font-size: 0.8rem;
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================================================
   SPONSOR RIBBON
   ========================================================= */
.sponsor-ribbon{
  position: relative;
  background: var(--wine-deep);
  color: var(--cream);
  padding: 3rem 0;
  text-align: center;
}
.ribbon-line{
  height: 3px;
  background: var(--gold-gradient);
}
.ribbon-icon{
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: inline-block;
}
.ribbon-heading{
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 640px;
  margin: 0 auto 0.8rem;
}
.ribbon-sub{
  color: rgba(248,241,225,0.85);
  margin-bottom: 1.8rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--charcoal);
  color: rgba(248,241,225,0.85);
  padding: 2.75rem 0 0;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}
.footer-logo{ height: 42px; width: auto; }
.footer-brand span{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 600;
}
.footer-tagline{ font-style: italic; color: var(--gold-light); }

.footer-heading{
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-links a{ color: rgba(248,241,225,0.85); }
.footer-links a:hover{ color: var(--gold-light); }

.footer-social{ display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a{
  width: 36px; height: 36px;
  border: 1px solid rgba(200,155,60,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: background 0.25s ease;
}
.footer-social a:hover{ background: rgba(200,155,60,0.15); }

.footer-bottom{
  margin-top: 3rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(248,241,225,0.55);
}
.footer-bottom p{ margin: 0.2rem 0; }

/* =========================================================
   INNER PAGE BANNER (About / Gallery / Sponsor / Contact / Testimonials)
   ========================================================= */
.inner-banner{
  background: var(--wine-deep);
  padding: 2.75rem 0 2.25rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.inner-banner::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gold-gradient);
}
.inner-banner .section-kicker{ color: var(--gold-light); }
.inner-banner-title{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.inner-banner-sub{
  font-style: italic;
  color: rgba(248,241,225,0.8);
  font-size: 1.05rem;
}
.breadcrumb-row{
  font-size: 0.8rem;
  color: rgba(248,241,225,0.65);
  margin-top: 0.6rem;
}
.breadcrumb-row a{ color: var(--gold-light); }

/* =========================================================
   ABOUT — HISTORY
   ========================================================= */
.history-section{
  padding: 3rem 0 1rem;
  background: var(--cream-soft);
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline-section{
  padding: 2.5rem 0 3rem;
  background: var(--cream-soft);
}
.timeline{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2.6rem;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(200,155,60,0.15));
}
.timeline-item{
  position: relative;
  padding-bottom: 2.6rem;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-marker{
  position: absolute;
  left: -2.6rem;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--wine-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  font-size: 1rem;
}
.timeline-year{
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.timeline-content h3{
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.timeline-content p{
  color: #3a2c26;
  margin: 0;
}

/* =========================================================
   EVENT HIGHLIGHTS PAGE
   ========================================================= */
.eh-overview{ padding: 2.5rem 0 1rem; background: var(--cream-soft); }
.eh-lede{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--wine-deep);
  line-height: 1.6;
}
.eh-section{ padding: 2.75rem 0; background: var(--cream-soft); }
.eh-section.eh-alt{ background: var(--cream); }

.judge-card{ text-align: center; }
.judge-card img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--gold);
  margin-bottom: 0.9rem;
}
.judge-card h3{ font-size: 1.1rem; margin-bottom: 0.1rem; }
.judge-card p{ font-size: 0.85rem; color: var(--wine); font-weight: 600; margin: 0; }

.eh-grid-img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease;
}
.eh-grid-img:hover{ transform: scale(1.03); }

.masonry-grid{
  column-count: 1;
  column-gap: 0.85rem;
}
@media (min-width: 576px){ .masonry-grid{ column-count: 2; } }
@media (min-width: 992px){ .masonry-grid{ column-count: 3; } }
.masonry-grid img{
  width: 100%;
  margin-bottom: 0.85rem;
  border-radius: 6px;
  break-inside: avoid;
}

.winner-card{
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.35);
  border-radius: 10px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(74,10,22,0.06);
}
.winner-card i{ font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; display: inline-block; }
.winner-card h3{ font-size: 1.2rem; margin-bottom: 0.3rem; }
.winner-card p{ color: #3a2c26; margin: 0; }
.winner-card-first{
  background: var(--wine-deep);
  border-color: var(--gold);
}
.winner-card-first i{ color: var(--gold-light); }
.winner-card-first h3{ color: var(--cream); }
.winner-card-first p{ color: rgba(248,241,225,0.85); }

.video-card{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.video-card img{ width: 100%; display: block; }
.video-play{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,21,18,0.35);
  color: var(--gold-light);
  font-size: 1.6rem;
  transition: background 0.25s ease;
}
.video-card:hover .video-play{ background: rgba(27,21,18,0.55); }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-section{ padding: 2.75rem 0; background: var(--cream-soft); }
.gallery-section.eh-alt{ background: var(--cream); }

.year-tabs-wrap{
  overflow-x: auto;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,155,60,0.3);
}
.year-tabs{
  display: flex;
  gap: 0.4rem;
  width: max-content;
  min-width: 100%;
}
.year-tab{
  border: none;
  background: transparent;
  color: var(--wine);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}
.year-tab.has-photos::after{
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.year-tab:hover{ background: rgba(200,155,60,0.12); }
.year-tab.active{
  background: var(--wine-deep);
  color: var(--cream);
}
.year-tab.active.has-photos::after{ background: var(--gold-light); }

.year-gallery-panel{ min-height: 120px; }

.empty-year-state{
  text-align: center;
  padding: 3rem 1rem;
  color: #6b5a52;
}
.empty-year-state i{
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.empty-year-state p{ max-width: 420px; margin: 0 auto; }

[data-lightbox]{ cursor: pointer; }

.lightbox-close{
  position: absolute;
  top: -2.4rem;
  right: 0;
  z-index: 2;
}

/* =========================================================
   SPONSOR FORM
   ========================================================= */
.sponsor-form-section{ padding: 2.75rem 0 3.5rem; background: var(--cream-soft); }
.sponsor-form{
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 12px;
  padding: 2.2rem;
  box-shadow: 0 20px 45px rgba(74,10,22,0.08);
}
.form-section-heading{
  font-size: 1.15rem;
  color: var(--wine-deep);
  border-bottom: 1px solid rgba(200,155,60,0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-label{ font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.form-control:focus, .form-select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(200,155,60,0.2);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section{ padding: 2.75rem 0 2rem; background: var(--cream-soft); }
.contact-card{
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 10px;
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(74,10,22,0.06);
}
.contact-card i{ font-size: 1.7rem; color: var(--gold); margin-bottom: 0.9rem; display: inline-block; }
.contact-card h3{ font-size: 1.1rem; margin-bottom: 0.6rem; }
.contact-card p{ font-size: 0.9rem; color: #3a2c26; margin-bottom: 1rem; }
.contact-card a{ color: var(--wine); }

.map-section{ padding: 0 0 3rem; background: var(--cream-soft); }
.map-wrap{
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200,155,60,0.3);
}

/* =========================================================
   TESTIMONIALS PAGE
   ========================================================= */
.testi-section{ padding: 2.75rem 0; background: var(--cream-soft); }
.testi-section.testi-section-alt{ background: var(--cream); }

/* Judges — framed card style */
.testi-card-judge{
  position: relative;
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.35);
  border-radius: 10px;
  padding: 2.4rem 1.6rem 1.8rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(74,10,22,0.07);
}
.testi-decor{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wine-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.testi-photo{
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin: 0.4rem auto 1rem;
}
.testi-card-judge .testi-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--wine-deep);
  margin-bottom: 1rem;
}
.testi-name{ font-weight: 700; font-size: 0.95rem; margin: 0; color: var(--charcoal); }
.testi-role{ font-size: 0.8rem; color: var(--wine); margin: 0; }

/* Participants — flat left-border style */
.testi-card-flat{
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  height: 100%;
  box-shadow: 0 8px 20px rgba(74,10,22,0.05);
}
.testi-card-flat .testi-quote{
  font-size: 1rem;
  color: #3a2c26;
  margin-bottom: 1rem;
}
.testi-flat-footer{
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}
.testi-flat-footer .testi-name{ color: var(--wine-deep); }
.testi-flat-footer .testi-role{ color: #8a7a70; }

/* Audience — quote-icon card style */
.testi-card-audience{
  background: var(--wine-deep);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  color: var(--cream);
}
.testi-card-audience i{ font-size: 1.6rem; color: var(--gold-light); margin-bottom: 0.6rem; display: inline-block; }
.testi-card-audience .testi-quote{ font-style: italic; margin-bottom: 1rem; color: rgba(248,241,225,0.92); }
.testi-card-audience .testi-name{ color: var(--gold-light); }
.testi-card-audience .testi-role{ color: rgba(248,241,225,0.6); }

/* Video testimonials */
.video-category-tabs .nav-link{
  color: var(--wine);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  margin: 0 0.2rem;
}
.video-category-tabs .nav-link.active{
  background: var(--wine-deep);
  color: var(--cream);
}
.video-caption{
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wine-deep);
  text-align: center;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top{
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--wine-deep);
  color: var(--gold-light);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(74,10,22,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
  z-index: 999;
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover{ background: var(--wine); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .back-to-top{ transition: opacity 0.15s ease, visibility 0.15s ease; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  .scroll-cue{ animation: none; }
  *{ scroll-behavior: auto !important; }
}
