/* ═══════════════════════════════════════════════
   CUISINE PAGE  — Banaras Culture Biennale
   ═══════════════════════════════════════════════ */

/* ── Page wrapper ─────────────────────────────── */
.cuisine-page { padding-top: 0; }

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

.cuisine-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");
}

.cuisine-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%
  );
}

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

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

.cuisine-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;
}

/* ── Breadcrumb ── */
.cuisine-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-family: var(--f-lbl);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.cuisine-breadcrumb a:hover { color: var(--saffron); }

.cuisine-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.cuisine-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.55);
}

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

.cuisine-hero-inner .section-label {
  color: var(--saffron);
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  display: block;
}

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

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

.cuisine-hero-title {
  font-family: var(--f-disp);
  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;
}

.cuisine-hero-title em {
  font-style: italic;
  color: var(--saffron);
}

.cuisine-hero-tagline { display: none; }

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

.cuisine-hero-gem { color: var(--saffron); font-size: 0.8rem; opacity: 0.85; }

.cuisine-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;
}

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

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

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

/* ══════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════ */
.cuisine-intro {
  background: var(--bg);
  padding: 3rem 4rem 7rem 4rem;
  position: relative;
}

.cuisine-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--saffron), var(--gold), transparent);
  opacity: 0.45;
}

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

/* ── Image mosaic ── */
.ci-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
  height: 500px;
}

.ci-img {
  overflow: hidden;
  position: relative;
}

.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.ci-img:hover img { transform: scale(1.06); }

.ci-img-label {
  position: absolute;
  bottom: 0.7rem;
  left: 0.8rem;
  font-family: var(--f-lbl);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.38);
  padding: 0.28rem 0.65rem;
  backdrop-filter: blur(4px);
}

/* img1: tall feature — spans both rows in col 1 */
.ci-img--1 { grid-column: 1; grid-row: 1 / 3; }
/* col 2 — top & bottom */
.ci-img--2 { grid-column: 2; grid-row: 1; }
.ci-img--4 { grid-column: 2; grid-row: 2; }
/* col 3 — top & bottom */
.ci-img--3 { grid-column: 3; grid-row: 1; }
.ci-img--5 { grid-column: 3; grid-row: 2; }

/* ── Content side ── */
.ci-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.ci-content .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--ember);
  margin-bottom: 1.2rem;
}

.ci-content .section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  text-align: left;
  margin-bottom: 0;
}

.ci-content .section-title em {
  font-style: italic;
  color: var(--ember);
}

.ci-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1px 0;
  width: 100%;
  max-width: 260px;
}

.ci-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 98, 45, 0.5), transparent);
}

.ci-gem { color: var(--saffron); font-size: 0.8rem; }

.ci-content .section-body {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.9;
  color: var(--body);
  text-align: left;
  max-width: 520px;
}

.ci-content .section-body + .section-body { margin-top: 1.2rem; }

/* ── Expandable paragraph ── */
.ci-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s ease;
  opacity: 0;
}

.ci-expandable.is-open {
  max-height: 400px;
  opacity: 1;
}

.ci-expandable .section-body { margin-top: 1.2rem; }

/* ── CTA toggle button ── */
.ci-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
  font-family: var(--f-lbl);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(196, 98, 45, 0.35);
  padding: 0 0 0.25rem;
  cursor: pointer;
  transition: gap 0.25s, color 0.25s;
}

.ci-cta-arrow { transition: transform 0.25s; }
.ci-cta:hover { color: var(--saffron); gap: 1rem; }
.ci-cta:hover .ci-cta-arrow { transform: translateX(4px); }
.ci-cta.is-open .ci-cta-arrow { transform: rotate(90deg); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .cuisine-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ci-mosaic {
    height: 340px;
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .cuisine-intro { padding: 5rem 1.5rem; }
  .ci-mosaic {
    height: 260px;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .ci-img--1 { grid-column: 1; grid-row: 1 / 3; }
  .ci-img--2 { grid-column: 2; grid-row: 1; }
  .ci-img--3 { grid-column: 2; grid-row: 2; }
  .ci-img--4 { grid-column: 1; grid-row: 3; }
  .ci-img--5 { grid-column: 2; grid-row: 3; }
}

/* ══════════════════════════════════════════════
   SLIDER SECTION
   ══════════════════════════════════════════════ */
.cuisine-slider-section {
  background: #0d0602;
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.cuisine-slider-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--saffron), var(--gold), transparent);
  opacity: 0.6;
}

/* ── Section header ── */
.cs-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.cs-header-hindi {
  display: block;
  font-family: var(--f-hi);
  font-size: 1.5rem;
  color: rgb(245 166 35 / 75%);
  margin-bottom: 0.6rem;
  letter-spacing: 0.08em;
}

.cs-header-title {
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}

.cs-header-title em {
  font-style: italic;
  color: var(--saffron);
}

.cs-header-rule {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 320px;
  margin: 0 auto 1.4rem;
}

.cs-ornament-line {
  flex: 1;
  height: 1px;
  background: rgba(245, 166, 35, 0.25);
}

.cs-ornament-gem {
  color: rgba(245, 166, 35, 0.6);
  font-size: 0.75rem;
}

.cs-header-tagline {
  font-family: var(--f-disp);
  font-style: italic;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  color: rgba(212, 184, 150, 0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Wrapper (holds arrows + overflow) ── */
.cs-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0 5.5rem;
  gap: 0;
}

/* ── Overflow container ── */
.cs-overflow {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* ── Track ── */
.cs-track {
  display: flex;
  gap: 1.75rem;
  will-change: transform;
  cursor: grab;
  user-select: none;
  align-items: stretch;
}

.cs-track:active { cursor: grabbing; }

/* ══════════════════════════════════════════════
   CARD
   ══════════════════════════════════════════════ */
.cs-card {
  flex: none;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.42s cubic-bezier(0.2, 0, 0, 1),
              box-shadow 0.42s ease;
  position: relative;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0, 0, 1);
  z-index: 3;
}

.cs-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 72px rgba(196, 98, 45, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.3);
}

.cs-card:hover::before { transform: scaleX(1); }

/* ── Card visual area ── */
.cs-visual {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.cs-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 30% 38%, var(--c2) 0%, var(--c1) 52%, var(--c3) 100%);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.cs-card:hover .cs-visual-bg { transform: scale(1.06); }

.cs-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(to bottom, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.52) 100%);
}

.cs-hindi {
  position: absolute;
  bottom: -1rem;
  right: 0.6rem;
  font-family: var(--f-hi);
  font-size: 5.5rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cs-card:hover .cs-hindi {
  transform: translateY(-7px) scale(1.04);
  opacity: 0.19;
}

.cs-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--f-lbl);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.38rem 0.85rem;
  backdrop-filter: blur(6px);
}

.cs-num {
  position: absolute;
  top: 1.15rem;
  right: 1.2rem;
  z-index: 2;
  font-family: var(--f-lbl);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Card body ── */
.cs-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #faf5ee;
}

.cs-title {
  font-family: var(--f-disp);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.cs-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--saffron));
  margin-bottom: 0.9rem;
  transition: width 0.35s ease;
}

.cs-card:hover .cs-line { width: 65px; }

.cs-desc {
  font-family: var(--f-disp);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.75;
  color: var(--body);
  flex: 1;
  margin-bottom: 1.2rem;
}

.cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-lbl);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid rgba(196, 98, 45, 0.3);
  padding-bottom: 0.22rem;
  transition: gap 0.25s, color 0.25s;
}

.cs-cta span { transition: transform 0.25s; }

.cs-cta:hover {
  color: var(--saffron);
  gap: 1rem;
}

.cs-cta:hover span { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   NAV ARROWS
   ══════════════════════════════════════════════ */
.cs-nav {
  flex-shrink: 0;
  width: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: rgba(245, 166, 35, 0.75);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  align-self: center;
  height: 56px;
  position: relative;
  z-index: 5;
}

.cs-nav:hover:not(:disabled) {
  background: var(--ember);
  border-color: var(--ember);
  color: #ffffff;
}

.cs-prev { margin-right: 1.2rem; }
.cs-next { margin-left:  1.2rem; }

.cs-nav:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   SLIDER BOTTOM (progress + dots + counter)
   ══════════════════════════════════════════════ */
.cs-bottom {
  padding: 2.8rem 5.5rem 0;
}

.cs-progress-wrap {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.8rem;
  border-radius: 2px;
  overflow: hidden;
}

.cs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--saffron));
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  width: 0%;
}

.cs-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Dots ── */
.cs-dots {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.cs-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--saffron);
}

/* ── Counter ── */
.cs-counter {
  font-family: var(--f-lbl);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.cs-counter #csNum {
  color: var(--saffron);
  font-size: 1.1rem;
}

.cs-slash { margin: 0 0.2rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cs-wrapper  { padding: 0 4rem; }
  .cs-bottom   { padding: 2.4rem 4rem 0; }
  .cs-nav      { width: 44px; height: 50px; }
  .cs-prev     { margin-right: 0.9rem; }
  .cs-next     { margin-left:  0.9rem; }
  .cs-visual   { height: 140px; }
}

@media (max-width: 680px) {
  .cuisine-intro  { padding: 5.5rem 1.5rem 4rem; }
  .cs-wrapper     { padding: 0 3rem; }
  .cs-bottom      { padding: 2rem 3rem 0; }
  .cs-nav         { width: 40px; height: 46px; font-size: 1.1rem; }
  .cs-prev        { margin-right: 0.7rem; }
  .cs-next        { margin-left:  0.7rem; }
  .cs-visual      { height: 130px; }
  .cs-body        { padding: 1.1rem 1.2rem 1.3rem; }
  .cs-title       { font-size: clamp(1rem, 3.5vw, 1.15rem); }
  .cs-desc        { font-size: 0.9rem; }
  .cuisine-hero-title { font-size: clamp(3rem, 13vw, 5rem); }
}
