/* ═══════════════════════════════════════════
   SARNATH PAGE — Banaras Culture Biennale
   Palette: saffron/ember/gold on dark #0d0602
   ═══════════════════════════════════════════ */

.sa-page { padding-top: 0; }

/* ══════════════════════════════════════════
   HERO  (mirrors kashi-vishwanath hero exactly)
   ══════════════════════════════════════════ */
.sa-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background: #0d0602;
}

.sa-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 18% 72%, rgba(196, 98, 45, 0.68) 0%, transparent 58%),
    radial-gradient(ellipse 58% 50% at 82% 28%, rgba(212, 175, 55, 0.44) 0%, transparent 56%),
    radial-gradient(ellipse 88% 44% at 50% 100%, rgba(100, 30, 5, 0.82) 0%, transparent 68%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4622d' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 6, 2, 0.55) 0%,
    rgba(13, 6, 2, 0.08) 45%,
    rgba(13, 6, 2, 0.62) 100%
  );
}

.sa-hero-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.sa-hero-deco-text {
  font-family: var(--f-hi, 'Tiro Devanagari Hindi', serif);
  font-size: clamp(14rem, 36vw, 30rem);
  color: rgba(245, 166, 35, 0.045);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.sa-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 115px 5vw 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sa-breadcrumb a {
  color: rgba(245, 166, 35, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.sa-breadcrumb a:hover { color: var(--saffron, #f5a623); }

.sa-breadcrumb-sep { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; }
.sa-breadcrumb span:last-child { color: rgba(255, 255, 255, 0.55); }

.sa-hero-top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sa-hero-top .section-label {
  font-family: var(--f-lbl, 'Cinzel', serif);
  color: var(--saffron, #f5a623);
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  display: block;
}

.sa-hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sa-hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  margin: 0;
  max-width: 200px;
}

.sa-hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 166, 35, 0.35);
}

.sa-hero-gem { color: var(--saffron, #f5a623); font-size: 0.8rem; opacity: 0.85; }

.sa-hero-title {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
  animation: hero-in 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sa-hero-title em {
  font-style: italic;
  color: var(--saffron, #f5a623);
}

.sa-hero-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.sa-hero-scroll span {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9a7a60;
}

.sa-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245, 166, 35, 0.55), transparent);
  animation: sa-scroll-fade 2.2s ease-in-out infinite;
}

@keyframes sa-scroll-fade {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ══════════════════════════════════════════
   SHARED UTILITIES
   ══════════════════════════════════════════ */
.sa-gem { color: var(--gold, #d4af37); font-size: 0.8rem; }

.sa-section-header { text-align: center; margin-bottom: 3.5rem; }

.sa-section-hindi {
  font-family: var(--f-hi, 'Tiro Devanagari Hindi', serif);
  font-size: 1.1rem;
  color: var(--saffron, #f5a623);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}

.sa-section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.8rem 0 1rem;
}

.sa-section-rule::before,
.sa-section-rule::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold, #d4af37);
  opacity: 0.45;
}

.sa-section-sub {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--body, #6a4a2a);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SECTION 1 — ABOUT
   ══════════════════════════════════════════ */
.sa-about {
  background: var(--bg, #faf5ed);
  padding: 3rem 4rem 7rem;
}

.sa-about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

/* Museum-exhibit image gallery */
.sa-about-images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sa-about-img-primary {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 6px 32px rgba(13, 6, 2, 0.12);
}

.sa-about-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.92);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sa-about-img-primary:hover img { transform: scale(1.05); }

.sa-about-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1rem 0.6rem;
  background: linear-gradient(to top, rgba(13,6,2,0.72) 0%, transparent 100%);
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.82);
}

.sa-about-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ember, #c4622d);
  color: #fff;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 1;
}

.sa-about-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sa-about-img-sec {
  position: relative;
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 4px 18px rgba(13, 6, 2, 0.09);
}

.sa-about-img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.88);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
}

.sa-about-img-sec:hover img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1);
}

.sa-about-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 0.7rem 0.45rem;
  background: linear-gradient(to top, rgba(13,6,2,0.65) 0%, transparent 100%);
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.75);
}

.sa-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
}

.sa-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* margin: 1rem 0 1.6rem; */
}

.sa-rule::before,
.sa-rule::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold, #d4af37);
  opacity: 0.4;
}


/* ══════════════════════════════════════════
   SECTION 2 — DEER PARK & RUINS
   ══════════════════════════════════════════ */
.sa-ruins {
  background: var(--bg2, #f4ece0);
  padding: 1rem 4rem 6rem;
}

.sa-ruins-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Editorial cards — mirrors KV festival blocks */
.sa-ruin-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  height: 380px;
  margin-bottom: 2.2rem;
  background: var(--bg, #faf5ed);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(13, 6, 2, 0.07);
  transition: box-shadow 0.3s;
}

.sa-ruin-block:hover {
  box-shadow: 0 10px 48px rgba(13, 6, 2, 0.13);
}

.sa-ruin-block--alt {
  direction: rtl;
}

.sa-ruin-block--alt > * {
  direction: ltr;
}

.sa-ruin-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.sa-ruin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sa-ruin-block:hover .sa-ruin-img img {
  transform: scale(1.06);
}

.sa-ruin-img-num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 1.6rem;
  color: rgba(245, 166, 35, 0.9);
  background: rgba(13, 6, 2, 0.55);
  backdrop-filter: blur(4px);
  padding: 0.15rem 0.55rem;
  line-height: 1;
  z-index: 1;
}

.sa-ruin-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--bg, #faf5ed) 100%);
}

.sa-ruin-block--alt .sa-ruin-fade {
  background: linear-gradient(to left, transparent 55%, var(--bg, #faf5ed) 100%);
}

.sa-ruin-content {
  padding: 2rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  border-top: 3px solid var(--saffron, #f5a623);
  overflow: hidden;
}

.sa-ruin-count {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196, 98, 45, 0.12);
  line-height: 1;
  margin-bottom: 0.2rem;
  display: block;
}

.sa-ruin-title {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text, #1a0a03);
  line-height: 1.15;
  margin: 0 0 0.4rem;
}

.sa-ruin-sub {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember, #c4622d);
  margin-bottom: 1.2rem;
}

/* Timing & garden callout */
.sa-timing-bar {
  display: flex;
  margin-top: 3rem;
  background: #0d0602;
  border: 1px solid rgba(245, 166, 35, 0.12);
}

.sa-timing-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(245, 166, 35, 0.1);
}

.sa-timing-item:last-child { border-right: none; }

.sa-timing-icon {
  font-size: 1.4rem;
  color: var(--saffron, #f5a623);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sa-timing-label {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.5);
  margin-bottom: 0.35rem;
}

.sa-timing-val {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.sa-timing-val span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ══════════════════════════════════════════
   SECTION 3 — OTHER KEY TOURIST ATTRACTIONS
   ══════════════════════════════════════════ */
.sa-other {
  position: relative;
  padding: 1rem 4rem 7rem;
  background: #0d0602;
  overflow: hidden;
}

.sa-other::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/ganga-aarti-portrait.png') center / cover no-repeat;
  filter: brightness(0.2);
  z-index: 0;
}

.sa-other::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 6, 2, 0.52);
  z-index: 0;
  pointer-events: none;
}

.sa-other-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.sa-other-title-light { color: #fff; }
.sa-other-sub-light   { color: rgba(255, 255, 255, 0.6); }

.sa-other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sa-other-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.18);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sa-other-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.04);
}

.sa-other-card-img {
  height: 230px;
  overflow: hidden;
}

.sa-other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
}

.sa-other-card:hover .sa-other-card-img img {
  transform: scale(1.07);
  filter: brightness(0.85) saturate(1);
}

.sa-other-card-body {
  padding: 1.8rem 2rem 2.2rem;
  border-top: 2px solid rgba(245, 166, 35, 0.2);
}

.sa-other-num {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(245, 166, 35, 0.14);
  line-height: 1;
  display: block;
  margin-bottom: 0.2rem;
}

.sa-other-card-title {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.sa-other-card-sub {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.7);
  margin-bottom: 0.9rem;
}

.sa-other-card-desc {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sa-ruin-block  { grid-template-columns: 340px 1fr; }
  .sa-other-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .sa-hero-inner  { padding: 80px 1.8rem 2rem; }
  .sa-about,
  .sa-ruins,
  .sa-other       { padding-left: 1.8rem; padding-right: 1.8rem; }
  .sa-about-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .sa-about-img-primary { min-height: 240px; }
  .sa-about-img-sec     { height: 130px; }
  .sa-ruin-block  { grid-template-columns: 1fr; height: auto; }
  .sa-ruin-img    { height: 220px; }
  .sa-ruin-content { height: auto; overflow: visible; }
  .sa-ruin-fade   { background: linear-gradient(to bottom, transparent 60%, var(--bg, #faf5ed) 100%) !important; }
  .sa-timing-bar  { flex-direction: column; }
  .sa-timing-item { border-right: none; border-bottom: 1px solid rgba(245,166,35,0.1); }
  .sa-timing-item:last-child { border-bottom: none; }
  .sa-hero-title  { font-size: clamp(1.6rem, 7vw, 3rem); white-space: normal; }
  .sa-hero-deco-text { font-size: clamp(8rem, 25vw, 16rem); }
}
