/* ── Variables ── */
:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #a8861e;
  --black: #0a0a0a;
  --dark: #111111;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f1f1f;
  --cream: #f5f0e1;

  --font-serif: "Times New Roman", Times, serif;
  --font-sans: "Times New Roman", Times, serif;

  --header-height: 96px;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--xs { padding: 8px 16px; font-size: 11px; }

/* ── Logo ── */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 68px; width: auto; display: block; object-fit: contain; }
.logo--footer .logo__img { height: 72px; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__link {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.68) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  color: var(--gold);
  font-style: normal;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero--home {
  min-height: auto;
  height: 52vh;
  min-height: 420px;
  max-height: 520px;
  align-items: center;
}
.hero--home .hero__content { padding: 32px 24px 40px; }
.hero--home .hero__overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100%);
}
.hero--home .hero__title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero--home .hero__title em {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
}
.hero--home .hero__subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  margin-bottom: 22px;
  max-width: 420px;
}
.hero--home .hero__actions .btn { padding: 11px 22px; font-size: 12px; }

.hero--page {
  min-height: 42vh;
  align-items: flex-end;
  background: center / cover no-repeat;
}
.hero--page .hero__content { padding: 48px 24px 64px; }
.hero--page .hero__title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.hero--page .hero__subtitle { margin-bottom: 0; max-width: 560px; }
.hero .section__label { display: block; margin-bottom: 12px; }

.hero--about { background-image: url("../assets/Black_colour.jpg"); }
.hero--shows { background-image: url("../assets/Black_colour.jpg"); }
.hero--podcast { background-image: url("../assets/Black_colour.jpg") }
.hero--events { background-image: url("../assets/Black_colour.jpg"); }
.hero--schedule { background-image: url("../assets/Black_colour.jpg"); }
.hero--contact { background-image: url("../assets/Black_colour.jpg"); }
.hero--news { background-image: url("../assets/unnamed-8.jpg"); }

/* ── Sections ── */
.section { padding: 60px 0; }
.section--light { background: var(--white); }
.section--dark { background: var(--black); }

/* Fix spacing after featured shows */
.section--light + .section--light {
  padding-top: 0;
}

.section--featured {
  padding: 40px 0 32px;
}
.section--featured .section__header {
  margin-bottom: 20px;
}
.section--featured .shows-grid {
  gap: 16px;
}

.section--explore {
  padding: 32px 0 40px;
}
.section--explore .section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.section__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.section__title--light { color: var(--white); margin-bottom: 48px; }
.section__title--sm { font-size: clamp(1.35rem, 3vw, 1.75rem); }
.section__header--compact { margin-bottom: 16px; }
.section__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  transition: color var(--transition);
}
.section__link:hover { color: var(--gold-dark); }

/* ── Show Cards ── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.show-card {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.show-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.show-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.show-card:hover .show-card__image img { transform: scale(1.05); }
.show-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  text-align: center;
}
.show-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  min-height: 2.5em;
  margin-bottom: 12px;
}

/* ── News Cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.news-card__image {
  width: 100%; height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.news-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.news-card:hover .news-card__image img { transform: scale(1.04); }
.news-card__body { padding: 20px; }
.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.news-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 2px;
}
.news-card__date { font-size: 0.75rem; color: #888; }
.news-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Schedule ── */
.schedule .section__label { margin-bottom: 8px; }
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.schedule__list { display: flex; flex-direction: column; }
.schedule__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.schedule__item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.schedule__time {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
}
.schedule__show { font-size: 16px; color: var(--white); }
.schedule__card {
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  background: rgba(201,162,39,0.05);
}
.schedule__card-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.schedule__card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.schedule__card-text { font-size: 14px; color: var(--gray-400); margin-bottom: 24px; }

/* ── Schedule Page Tabs ── */
.schedule-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.schedule-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-serif);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.schedule-tab:hover,
.schedule-tab--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.schedule-day { display: none; }
.schedule-day--active { display: block; }
.schedule__list--columns {
  display: block;
  columns: 3;
  column-gap: 40px;
}
.schedule__list--columns .schedule__item {
  break-inside: avoid;
  padding: 10px 0;
}
.schedule__list--columns .schedule__time { min-width: 72px; font-size: 13px; }
.schedule__list--columns .schedule__show { font-size: 14px; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 64px 0;
  background: url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?w=1920&h=400&fit=crop") center / cover no-repeat;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(2px);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner__subtitle { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ── Footer ── */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer__contact svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom { padding: 24px 0; text-align: center; }
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-grid__image img { width: 100%; height: 100%; object-fit: cover; }
.about-grid__text p { color: var(--gray-600); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-card__icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 16px; }
.value-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-600); }

/* ── Podcast ── */
.podcast-embed { width: 100%; margin-top: 24px; }
.podcast-grid { display: grid; gap: 20px; }
.podcast-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.podcast-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.podcast-card__cover { width: 120px; height: 120px; border-radius: var(--radius); overflow: hidden; }
.podcast-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast-card__meta { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 6px; }
.podcast-card__title { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; }
.podcast-card__desc { font-size: 14px; color: var(--gray-600); }

/* ── Events ── */
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.event-card__image { aspect-ratio: 4/3; overflow: hidden; }
.event-card__image img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 16px; }
.event-card__date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.event-card__title { font-family: var(--font-serif); font-size: 16px; margin-bottom: 6px; line-height: 1.3; }
.event-card__location { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.event-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 6px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.event-card--past .event-card__image img { filter: grayscale(40%); }
.event-card--past .event-card__date { color: var(--gray-600); }
.section--events-grids { padding: 40px 0 28px; }
.section--events-grids .section__header { margin-bottom: 24px; }
.events-past { margin-top: 48px; }
.events-empty {
  grid-column: 1 / -1;
  padding: 32px 24px;
  text-align: center;
  color: var(--gray-600);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-grid .section__title { margin-bottom: 28px; }
.contact-form { display: grid; gap: 20px; }
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.contact-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-600);
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus { outline: none; border-color: var(--gold); }
.contact-form .form-group textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { justify-self: start; }
.form-notice {
  padding: 14px 16px;
  background: rgba(201,162,39,0.15);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 500;
}
.contact-info-card {
  padding: 32px;
  background: var(--black);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.8);
}
.contact-info-card h3 { font-family: var(--font-serif); font-size: 24px; color: var(--white); margin-bottom: 24px; }
.contact-info-card ul { display: grid; gap: 20px; }
.contact-info-card li { display: flex; gap: 14px; font-size: 14px; }
.contact-info-card svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── Preview Cards ── */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.preview-card {
  padding: 20px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.preview-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.preview-card__icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 10px; }
.preview-card h3 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 6px; }
.preview-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 14px; }

/* ── Shows Page ── */
.shows-grid--page { grid-template-columns: repeat(4, 1fr); }

/* ── Watch Page ── */
.watch-page { padding-top: calc(var(--header-height) + 48px); min-height: calc(100vh - var(--header-height)); }
.watch-page__back { display: inline-block; color: var(--gold); font-size: 14px; font-weight: 500; margin-bottom: 20px; transition: opacity var(--transition); }
.watch-page__back:hover { opacity: 0.8; }
.watch-page__title { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 600; color: var(--white); }
.watch-page__schedule { color: var(--gray-400); font-size: 14px; margin-top: 8px; margin-bottom: 24px; }
.watch-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.2);
}
.watch-player iframe,
.watch-player #player { position: absolute; inset: 0; width: 100%; height: 100%; }
.watch-controls { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 28px; }

/* ── Sulekha ── */
.sulekha-embed {
  background: #f9f9f9;
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 60px 24px;
  text-align: center;
}
.sulekha-embed__inner { max-width: 480px; margin: 0 auto; }
.sulekha-embed__icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 16px; }
.sulekha-embed__inner h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; color: #111; }
.sulekha-embed__inner p { color: #666; margin-bottom: 24px; font-size: 0.95rem; }

.section--events-upcoming { padding: 24px 0; }
.sulekha-embed--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  text-align: left;
}
.sulekha-embed--compact .sulekha-embed__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: none;
  margin: 0;
  flex: 1;
}
.sulekha-embed--compact .sulekha-embed__icon {
  width: 32px;
  height: 32px;
  margin: 0;
  flex-shrink: 0;
}
.sulekha-embed--compact .sulekha-embed__text h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: #111;
}
.sulekha-embed--compact .sulekha-embed__text p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}
.sulekha-embed--compact .btn { flex-shrink: 0; white-space: nowrap; }

.section--booking { padding: 28px 0 40px; }
.section--booking .section__title--light { margin-bottom: 0; }

/* ── Booking ── */
.booking-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.booking-info__title { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.booking-info__desc { color: #aaa; font-size: 0.875rem; line-height: 1.5; margin-bottom: 14px; }
.booking-info__features { list-style: none; margin-bottom: 16px; }
.booking-info__features li { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 0.82rem; margin-bottom: 6px; }
.booking-info__features svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.booking-call p { color: #aaa; font-size: 0.85rem; margin-bottom: 12px; }
.booking-call__btn { display: inline-flex; align-items: center; gap: 10px; }
.booking-call__btn svg { width: 18px; height: 18px; }
.booking-form-wrap {
  background: #1a1a1a;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 24px;
}
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.booking-form .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #aaa;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  padding: 10px 14px;
  transition: border-color 0.2s;
  outline: none;
}
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus { border-color: var(--gold); }
.booking-form .form-group select option { background: #111; color: #fff; }
.booking-form .form-group textarea { resize: vertical; }
.booking-form textarea { min-height: 64px; }
.booking-form__submit { width: 100%; padding: 12px; font-size: 0.9rem; margin-top: 4px; }
.booking-form__notice {
  text-align: center;
  color: #4CAF50;
  font-size: 0.9rem;
  margin-top: 16px;
  padding: 12px;
  background: rgba(76,175,80,0.1);
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .schedule__list--columns { columns: 2; column-gap: 28px; }
  .shows-grid,
  .shows-grid--page { grid-template-columns: repeat(3, 1fr); }
  .events-grid,
  .preview-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .schedule__list--columns { columns: 1; }
  .sulekha-embed--compact {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .sulekha-embed--compact .btn { width: 100%; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    transform: none;
    flex-direction: column;
    background: rgba(10,10,10,0.97);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(201,162,39,0.15);
  }
  .nav--open { display: flex; }
  .nav__link { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .menu-toggle { display: flex; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .schedule__grid { grid-template-columns: 1fr; gap: 32px; }
  .section__header { flex-direction: column; align-items: flex-start; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .events-grid,
  .preview-grid,
  .values-grid { grid-template-columns: 1fr; }
  .podcast-card { grid-template-columns: 80px 1fr; }
  .podcast-card .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .shows-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 280px; }
}