/* ═══════════════════════════════════════════════════════
   INNER.CSS — New styles for inner pages only
   DO NOT duplicate anything already in style.css
═══════════════════════════════════════════════════════ */

/* ── Page Hero Banner ─────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 2.5rem;
  margin-top: 70px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1209 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}
.page-hero.has-bg-image::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.82));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .section-label {
  display: block;
  margin-bottom: 0.5rem;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.page-hero-content p {
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  font-size: 1rem;
  max-width: 560px;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb-inner a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-inner span { color: var(--accent); }

/* ── Inner Page Wrapper ───────────────────────────────── */
.inner-section {
  padding: 5rem 0;
}
.inner-section-sm {
  padding: 3.5rem 0;
}

/* ── No Image Placeholder ─────────────────────────────── */
.no-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ece4;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.8;
  width: 100%;
  aspect-ratio: 16/9;
}
.no-img-placeholder.ratio-sq { aspect-ratio: 1/1; }
.no-img-placeholder.ratio-43 { aspect-ratio: 4/3; }

/* ── Category Filter Tabs ─────────────────────────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.45rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: #555;
  transition: all 0.2s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Store Inner Grid ─────────────────────────────────── */
.store-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.store-inner-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.store-inner-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.store-inner-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.store-inner-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.store-inner-card:hover .store-inner-card-img img {
  transform: scale(1.05);
}
.store-inner-card-body {
  padding: 1.2rem;
}
.store-inner-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.store-inner-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.store-inner-price .orig {
  font-size: 0.82rem;
  color: #999;
  text-decoration: line-through;
  margin-right: 0.4rem;
  font-weight: 400;
}
.store-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 0.6rem;
}

/* ── Albums Inner Grid ────────────────────────────────── */
.albums-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

/* ── Listing Grid (News / Musings / Events) ───────────── */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.listing-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.listing-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.listing-card:hover .listing-card-img img {
  transform: scale(1.05);
}
.listing-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.listing-card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.listing-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.listing-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.listing-card-title a:hover { color: var(--accent); }
.listing-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.listing-card-location {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.read-more-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.read-more-link:hover { gap: 0.6rem; color: var(--accent); }

/* ── Detail Page ──────────────────────────────────────── */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-wrap { grid-template-columns: 1fr; }
}
.detail-hero-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}
.detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #666;
}
.detail-meta-item i { color: var(--accent); }
.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.detail-body {
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
}
.detail-body p { margin-bottom: 1.25rem; }
.detail-body h2,
.detail-body h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
  margin: 2rem 0 1rem;
}
.detail-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.detail-body a { color: var(--accent); }

/* ── Sidebar ──────────────────────────────────────────── */
.sidebar-card {
  background: #f8f7f4;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #efefef;
  font-size: 0.88rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-list a:hover { color: var(--accent); }
.sidebar-event-date {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

/* ── Event Detail Card ────────────────────────────────── */
.event-info-card {
  background: #f8f7f4;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.event-info-card-header {
  background: var(--accent);
  padding: 1rem 1.5rem;
}
.event-info-card-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.event-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #efefef;
  font-size: 0.88rem;
  color: #444;
}
.event-info-row:last-child { border-bottom: none; }
.event-info-row i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
}

/* ── FAQ Inner Page ───────────────────────────────────── */
.faq-inner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .faq-inner-grid { grid-template-columns: 1fr; }
}
.faq-category-nav {
  position: sticky;
  top: 90px;
}
.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(0,0,0,0.03);
}
.faq-search-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.faq-search-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.faq-search-wrap input:focus { border-color: var(--accent); }
.faq-search-wrap i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}
.faq-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  margin-left: 0.5rem;
}

/* ── Lesson Pages ─────────────────────────────────────── */
.lesson-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .lesson-hero { grid-template-columns: 1fr; }
}
.lesson-hero-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lesson-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lesson-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.lesson-feature-card {
  background: #f8f7f4;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.25s;
}
.lesson-feature-card:hover { border-color: var(--accent); }
.lesson-feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.lesson-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.lesson-feature-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.6;
}
.register-cta-box {
  background: linear-gradient(135deg, #1a1209, #0d0d0d);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.register-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.register-cta-box p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Photos Gallery Grid ──────────────────────────────── */
.gallery-filter-wrap {
  margin-bottom: 2rem;
}
.photos-grid {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 768px) { .photos-grid { columns: 2; } }
@media (max-width: 480px) { .photos-grid { columns: 1; } }
.photo-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.photo-overlay i {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-item:hover .photo-overlay { background: rgba(0,0,0,0.4); }
.photo-item:hover .photo-overlay i { opacity: 1; }

/* ── Videos Inner Grid ────────────────────────────────── */
.videos-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.video-inner-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.video-inner-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.video-inner-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-inner-embed iframe,
.video-inner-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-inner-title {
  padding: 0.9rem 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* ── Pagination ───────────────────────────────────────── */
.inner-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.inner-pagination a,
.inner-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}
.inner-pagination a:hover,
.inner-pagination span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Gold divider rule (reuse from home) ──────────────── */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1rem 0 2rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── Responsive tweaks ────────────────────────────────── */
@media (max-width: 768px) {
  .inner-section { padding: 3rem 0; }
  .store-inner-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .listing-grid { grid-template-columns: 1fr; }
  .register-cta-box { padding: 2rem 1.25rem; }
  .faq-inner-grid { gap: 2rem; }
}
@media (max-width: 480px) {
  .store-inner-grid { grid-template-columns: 1fr; }
  .albums-inner-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ── Store Detail Page ────────────────────────────────── */
.store-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 860px) {
  .store-detail-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
.store-detail-main-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  aspect-ratio: 1/1;
  background: #f8f7f4;
}
.store-detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store-detail-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.store-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.store-detail-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.store-detail-sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}
.store-detail-orig-price {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
}
.store-detail-short-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.store-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.store-detail-actions .btn,
.store-detail-actions .btn-dark {
  flex: 1;
  text-align: center;
  min-width: 140px;
}
.store-detail-meta {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
}
.store-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
}
.store-meta-label {
  color: #999;
  min-width: 90px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.store-meta-value { color: #333; }
.store-guarantee-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.store-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #666;
}
.store-guarantee-item i { color: var(--accent); }

/* Store full description */
.store-detail-full-desc {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.store-desc-tabs {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}
.store-desc-tab {
  padding: 0.9rem 1.75rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.store-desc-tab.active,
.store-desc-tab:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.store-desc-body {
  padding: 2rem;
}

/* ── Album card title & meta override (light bg fix) ─── */
.album-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.album-meta {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ── Music Banner override for albums inner page ─────── */
.music-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #1a1209 0%, #2d1f0a 100%);
  border: none;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}
.music-banner-text .section-label {
  color: var(--accent) !important;
  display: block;
  margin-bottom: 0.5rem;
}
.music-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.music-banner-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.7;
  font-style: normal;
  max-width: 520px;
}
.music-banner-action {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .music-banner {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .music-banner-desc { max-width: 100%; }
}

/* ── Store card refinements ───────────────────────────── */
.store-inner-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.store-inner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--accent);
}
.store-inner-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.store-inner-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.store-inner-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.1rem;
}
/* Store card button */
.store-inner-card-body .btn,
.store-inner-card-body a.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
/***************************DTGRID/////////////////////*/
/* ── Section wrapper ──────────────────────────────────────── */
.ip-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}
 
/* ── btgrid Bootstrap-like grid reset ────────────────────── */
.btgrid-render .btgrid {
  width: 100%;
}
 
.btgrid-render .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}
.btgrid-render .row:last-child { margin-bottom: 0; }
 
.btgrid-render [class*="col-md-"] {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
}
 
.btgrid-render .col-md-1  { flex: 0 0 calc(8.333%  - 2rem); }
.btgrid-render .col-md-2  { flex: 0 0 calc(16.667% - 2rem); }
.btgrid-render .col-md-3  { flex: 0 0 calc(25%     - 2rem); }
.btgrid-render .col-md-4  { flex: 0 0 calc(33.333% - 2rem); }
.btgrid-render .col-md-5  { flex: 0 0 calc(41.667% - 2rem); }
.btgrid-render .col-md-6  { flex: 0 0 calc(50%     - 2rem); }
.btgrid-render .col-md-7  { flex: 0 0 calc(58.333% - 2rem); }
.btgrid-render .col-md-8  { flex: 0 0 calc(66.667% - 2rem); }
.btgrid-render .col-md-9  { flex: 0 0 calc(75%     - 2rem); }
.btgrid-render .col-md-10 { flex: 0 0 calc(83.333% - 2rem); }
.btgrid-render .col-md-11 { flex: 0 0 calc(91.667% - 2rem); }
.btgrid-render .col-md-12 { flex: 0 0 100%; }
 
/* ── Content typography ───────────────────────────────────── */
.btgrid-render .content {
  font-family: var(--font-body);
  font-size: 1.125rem;        /* bumped up from 1rem */
  line-height: 1.95;
  color: hsl(0, 0%, 22%);
}
 
/* Headings — shared */
.btgrid-render .content h1,
.btgrid-render .content h2,
.btgrid-render .content h3,
.btgrid-render .content h4,
.btgrid-render .content h5,
.btgrid-render .content h6 {
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
 
.btgrid-render .content h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; }
 
/* h2 — centred, larger, accent rule centred beneath */
.btgrid-render .content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
}
.btgrid-render .content h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: var(--darkAccent);
  margin: 0.75rem auto 0;
}
 
.btgrid-render .content h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
.btgrid-render .content h5 { font-size: 1.05rem;  font-weight: 700; color: hsl(0,0%,28%); }
.btgrid-render .content h6 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--darkAccentdip);
}
 
/* First heading in a cell has no top gap */
.btgrid-render .content > *:first-child { margin-top: 0; }
 
/* Paragraphs */
.btgrid-render .content p {
  margin-bottom: 1.35rem;
  color: hsl(0, 0%, 22%);
}
.btgrid-render .content p:last-child { margin-bottom: 0; }
 
/* Links */
.btgrid-render .content a {
  color: var(--darkAccentdip);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.btgrid-render .content a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
 
/* Lists */
.btgrid-render .content ul,
.btgrid-render .content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.35rem;
}
.btgrid-render .content ul { list-style: disc; }
.btgrid-render .content ol { list-style: decimal; }
.btgrid-render .content li {
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 22%);
}
 
/* Blockquote */
.btgrid-render .content blockquote {
  border-left: 3px solid var(--darkAccent);
  margin: 2rem 0;
  padding: 1.1rem 1.75rem;
  background: hsl(29, 40%, 96%);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.7;
}
.btgrid-render .content blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-style: normal;
  font-family: var(--font-ui);
  color: var(--darkAccentdip);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
 
/* Images */
.btgrid-render .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.5rem 0;
}
 
/* Tables */
.btgrid-render .content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.95rem;
}
.btgrid-render .content th {
  background: var(--accent);
  color: var(--lightAccent);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  text-align: left;
}
.btgrid-render .content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(29, 30%, 88%);
  color: hsl(0, 0%, 22%);
}
.btgrid-render .content tr:last-child td { border-bottom: none; }
.btgrid-render .content tbody tr:nth-child(even) { background: hsl(29, 40%, 97%); }
 
/* ── Donate button ────────────────────────────────────────── */
.btgrid-render .donate-btn-wrap {
  margin: 2.5rem 0;
  text-align: center;           /* centre the button in its column */
}
.btgrid-render .donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.15rem 3.25rem;     /* generous padding — prominent size */
  font-family: var(--font-ui);
  font-size: 0.92rem;           /* bigger label */
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--darkAccent);
  color: var(--accent);
  border: 2px solid var(--darkAccent);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s,
              transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btgrid-render .donate-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--lightAccent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
 
/* ── Donation notes block ─────────────────────────────────── */
.btgrid-render .donation-notes {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: hsl(29, 40%, 96%);
  border-left: 3px solid var(--darkAccent);
  border-radius: 0 8px 8px 0;
}
.btgrid-render .donation-notes p {
  font-size: 0.93rem;
  color: hsl(0, 0%, 28%);
  margin-bottom: 0.65rem;
}
.btgrid-render .donation-notes p:last-child { margin-bottom: 0; }
 
/* ── Closing text block ───────────────────────────────────── */
.btgrid-render .closing-text {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(29, 30%, 85%);
}
.btgrid-render .closing-text p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.65rem;
  line-height: 1.65;
}
 
/* ── h4 callout box ───────────────────────────────────────── */
.btgrid-render .content h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: hsl(0, 0%, 28%);
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  padding: 1.35rem 1.75rem;
  background: hsl(29, 35%, 95%);
  border-radius: 8px;
  border-left: 4px solid var(--darkAccent);
}
.btgrid-render .content h4 a {
  color: var(--darkAccentdip);
  font-weight: 700;
}
 
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .btgrid-render .row {
    flex-direction: column;
    gap: 1.75rem;
  }
  .btgrid-render [class*="col-md-"] {
    flex: 0 0 100% !important;
    width: 100%;
  }
  .btgrid-render .donation-notes { padding: 1rem 1.25rem; }
  .btgrid-render .donate-btn { padding: 1rem 2.25rem; font-size: 0.85rem; }
}
 
@media (max-width: 480px) {
  .ip-section { padding: 3rem 0 4rem; }
  .btgrid-render .content { font-size: 1.05rem; }
  .btgrid-render .content h2 { font-size: 1.55rem; }
  .btgrid-render .content h3 { font-size: 1.25rem; }
  .btgrid-render .donate-btn { width: 100%; justify-content: center; }
}
/*Only for Lesson Types*/
/* ═══════════════════════════════════════════════════════════════
   LESSON PAGE — section-based content styles
   Appended to inner.css.
   Targets <section> tags emitted directly by the admin CKEditor.
   Scoped under .ip-sectioned so nothing leaks elsewhere.
═══════════════════════════════════════════════════════════════ */

/* ── Shared section defaults ─────────────────────────────── */
.ip-sectioned section {
  padding: 5rem 0;
  width: 100%;
}

/* ── btgrid inside sections inherits existing grid rules ─── */
.ip-sectioned .btgrid-render,
.ip-sectioned section {
  /* btgrid-render class is on the outer wrapper so all
     .btgrid / .row / .col-md-* rules still apply */
}

/* Ensure the container is properly centred inside each section */
.ip-sectioned section > .btgrid,
.ip-sectioned section > .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* For sections that have content without a btgrid wrapper
   (like .online-learning-section and .class-prerequisites-section) */
.ip-sectioned section > h2,
.ip-sectioned section > h3,
.ip-sectioned section > p,
.ip-sectioned section > ul,
.ip-sectioned section > ol {
  width: 92%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Alternating background rhythm ───────────────────────── */
.ip-sectioned .why-learn-section {
  background: hsl(29, 45%, 93%);   /* warm sandy — matches screenshot */
}
.ip-sectioned .class-structure-section {
  background: var(--white);
}
.ip-sectioned .online-learning-section {
  background: hsl(29, 45%, 93%);
}
.ip-sectioned .class-prerequisites-section {
  background: var(--white);
}

/* ── Section content typography (mirrors btgrid-render rules) */
.ip-sectioned .content,
.ip-sectioned section > p,
.ip-sectioned section > ul,
.ip-sectioned section > ol {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.95;
  color: hsl(0, 0%, 22%);
}

.ip-sectioned .content h2,
.ip-sectioned section > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.ip-sectioned .content h2::after,
.ip-sectioned section > h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: var(--darkAccent);
  margin: 0.75rem auto 1.75rem;
}

.ip-sectioned .content h3,
.ip-sectioned section > h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.ip-sectioned .content p,
.ip-sectioned section > p {
  margin-bottom: 1.25rem;
  color: hsl(0, 0%, 22%);
}

.ip-sectioned .content ul,
.ip-sectioned .content ol,
.ip-sectioned section > ul,
.ip-sectioned section > ol {
  padding-left: 1.6rem;
  margin-bottom: 1.5rem;
}
.ip-sectioned .content li,
.ip-sectioned section > li {
  margin-bottom: 0.55rem;
  color: hsl(0, 0%, 22%);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ip-sectioned .content a,
.ip-sectioned section a {
  color: var(--darkAccentdip);
  font-weight: 600;
  /*border-bottom: 1px solid transparent;*/
  transition: border-color 0.2s, color 0.2s;
}
.ip-sectioned .content a:hover,
.ip-sectioned section a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.ip-sectioned .content strong { color: var(--accent); font-weight: 700; }

/* ── Form section ────────────────────────────────────────── */
.lp-form-section {
  padding: 5rem 0 6rem;
  background: hsl(29, 45%, 83%);   /* deeper warm sand, matches screenshot */
}

/* ── Form header ─────────────────────────────────────────── */
.lp-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lp-form-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.lp-form-subtitle {
  font-size: 1rem;
  color: hsl(0, 0%, 30%);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Form card ───────────────────────────────────────────── */
.lp-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}

/* ── Field layout ────────────────────────────────────────── */
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.lp-form-row--phone {
  grid-template-columns: 1fr 1.6fr;
  align-items: end;
}
.lp-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.lp-form-row .lp-form-group { margin-bottom: 0; }

/* ── Label ───────────────────────────────────────────────── */
.lp-label {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: hsl(0, 0%, 18%);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}
.lp-required {
  font-weight: 400;
  color: hsl(0, 0%, 50%);
  font-size: 0.85rem;
}

/* ── Inputs ──────────────────────────────────────────────── */
.lp-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: hsl(29, 40%, 96%);
  border: 1.5px solid hsl(29, 30%, 82%);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsl(0, 0%, 15%);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.lp-input:focus {
  border-color: var(--darkAccentdip);
  box-shadow: 0 0 0 3px hsl(30, 60%, 90%);
}
.lp-input::placeholder { color: hsl(0, 0%, 60%); }

.lp-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── Select ──────────────────────────────────────────────── */
.lp-select-wrap {
  position: relative;
}
.lp-select {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 1.1rem;
  background: hsl(29, 40%, 96%);
  border: 1.5px solid hsl(29, 30%, 82%);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsl(0, 0%, 15%);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-select:focus {
  border-color: var(--darkAccentdip);
  box-shadow: 0 0 0 3px hsl(30, 60%, 90%);
}
.lp-select-wrap::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

/* ── Radio group ─────────────────────────────────────────── */
.lp-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
.lp-radio-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  color: hsl(0, 0%, 18%);
  cursor: pointer;
  font-family: var(--font-body);
}
.lp-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.lp-radio-custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid hsl(29, 30%, 72%);
  background: hsl(29, 40%, 96%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.lp-radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.lp-radio-label input[type="radio"]:checked ~ .lp-radio-custom {
  border-color: var(--accent);
  background: hsl(29, 40%, 96%);
}
.lp-radio-label input[type="radio"]:checked ~ .lp-radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

/* ── Submit button ───────────────────────────────────────── */
.lp-submit-btn {
  display: block;
  width: 100%;
  padding: 1.1rem 2rem;
  margin-top: 2rem;
  background: var(--accent);
  color: var(--lightAccent);
  border: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.lp-submit-btn:hover:not(:disabled) {
  background: hsl(31, 71%, 8%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.lp-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* ── Error / Success states ──────────────────────────────── */
.lp-form-error {
  background: hsl(0, 60%, 96%);
  border-left: 3px solid hsl(0, 65%, 55%);
  color: hsl(0, 50%, 35%);
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  font-size: 0.92rem;
  margin-top: 1rem;
}
.lp-form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.lp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(140, 50%, 45%);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.lp-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.lp-form-success p { color: hsl(0,0%,35%); font-size: 1rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .ip-sectioned section { padding: 3.5rem 0; }
  .lp-form-card { padding: 2rem 1.5rem; border-radius: 10px; }
  .lp-form-row,
  .lp-form-row--phone { grid-template-columns: 1fr; gap: 0; }
  .lp-form-row .lp-form-group { margin-bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .lp-form-title { font-size: 1.8rem; }
  .ip-sectioned section { padding: 2.5rem 0; }
}


/* ═══════════════════════════════════════════════════════════════
   LESSON PAGE HERO SECTION
   Split layout: left = dark content panel, right = photo
   Matches the squarespace screenshot aesthetic exactly.
═══════════════════════════════════════════════════════════════ */

.lp-hero-section {
  width: 100%;
  /* Sits flush below the page-hero banner — no extra top padding */
}

/* Two-column split — left content, right photo */
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* ── Left: dark warm content panel ──────────────────────── */
.lp-hero-content {
  background: radial-gradient(ellipse at 20% 60%,
    hsl(31, 60%, 18%) 0%,
    hsl(31, 71%, 12%) 55%,
    hsl(31, 71%, 9%)  100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5%;
  position: relative;
}

/* Subtle texture overlay — matches the main banner */
.lp-hero-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.018'%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");
  pointer-events: none;
  z-index: 0;
}

.lp-hero-content > * { position: relative; z-index: 1; }

.lp-hero-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--darkAccent);
  margin-bottom: 1.1rem;
}

.lp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lp-hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

/* Register Now button — outlined white, matches site .btn style */
.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  text-decoration: none;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition);
  scroll-behavior: smooth;
}
.lp-hero-btn:hover {
  background: var(--white);
  color: var(--accent);
}

/* ── Right: full-bleed photo panel ──────────────────────── */
.lp-hero-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 480px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  /* Photo above content on mobile — mirrors the main banner pattern */
  .lp-hero-image {
    order: -1;
    min-height: 55vw;
    max-height: 400px;
  }
  .lp-hero-content {
    padding: 3.5rem 1.5rem;
  }
  .lp-hero-btn { align-self: stretch; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .lp-hero-title { font-size: 1.7rem; }
  .lp-hero-image { min-height: 65vw; }
}

/* ── Form deadline block (masterclass & future forms) ────── */
.lp-form-deadline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.5rem;
}
.lp-deadline-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.lp-deadline-date {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Indented input (other instrument field) ─────────────── */
.lp-input--indent {
  margin-left: 2.1rem;
  width: calc(100% - 2.1rem);
}


/* ═══════════════════════════════════════════════════════════════
   GROUP CLASS PAGE — new section types
   gc-how-to-join-section, gc-cta-section
   All .lp-* form styles already cover the inline form card.
═══════════════════════════════════════════════════════════════ */

/* ── Instructor images ───────────────────────────────────── */
.gc-instructor-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.gc-instructor-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 220px;
}

/* ── How to Join split section ───────────────────────────── */
.gc-how-to-join-section {
  background: hsl(29, 45%, 93%);
  padding: 5rem 0;
}

/* Left col heading — large display, left-aligned, no centre rule */
.gc-join-heading {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  text-align: left !important;
  margin-bottom: 2rem !important;
}
/* Override the centred h2::after rule for this heading only */
.gc-join-heading::after { display: none !important; }

/* Steps */
.gc-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gc-step { line-height: 1.7; }
.gc-step-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.gc-step p {
  margin: 0;
  font-size: 1.05rem;
  color: hsl(0, 0%, 22%);
}

/* Right col — inline form card (floats as white card on sandy bg) */
.gc-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}

/* Smaller sub-label inside name row */
.lp-label--sm {
  font-size: 0.82rem;
  font-weight: 600;
}
.gc-form-name-label {
  margin-bottom: 0.5rem;
}

/* ── CTA banner section ──────────────────────────────────── */
.gc-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;                   /* overlay handles all spacing */
}
.gc-cta-overlay {
  background: rgba(0, 0, 0, 0.58);
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-cta-content {
  text-align: center;
  max-width: 700px;
}
.gc-cta-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  text-align: center !important;
  margin-bottom: 1rem !important;
}
/* No accent rule under this h2 */
.gc-cta-title::after { display: none !important; }

.gc-cta-desc {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.75 !important;
  margin-bottom: 2.25rem !important;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.gc-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Buttons inherit .lp-hero-btn (white outlined) */

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .gc-form-card { padding: 2rem 1.5rem; }
  .gc-instructor-images { flex-direction: row; }
  .gc-instructor-img { max-height: 160px; flex: 1; }
}
@media (max-width: 768px) {
  .gc-how-to-join-section .row { flex-direction: column; }
  .gc-how-to-join-section [class*="col-md-"] {
    flex: 0 0 100% !important;
    width: 100%;
  }
  .gc-cta-overlay { padding: 4.5rem 1.5rem; }
  .gc-cta-btns { flex-direction: column; align-items: stretch; }
  .gc-cta-btns .lp-hero-btn { text-align: center; justify-content: center; }
}
/*Only for Lesson Types*/
/*About Us*/
/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — section-specific styles
   Scoped under .ip-sectioned.
   Append to inner.css after inner_page_additions.css and
   lesson_page_sections.css.
═══════════════════════════════════════════════════════════════ */

/* ── Shared label ─────────────────────────────────────────── */
.ab-section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--darkAccent);
  margin-bottom: 0.85rem;
}

/* ── Shared: reset .content padding/display inside about sections
   so the custom flex/grid children inside .content render correctly ── */
.ip-sectioned .ab-bio-section .content,
.ip-sectioned .ab-recognition-section .content,
.ip-sectioned .ab-legacy-section .content,
.ip-sectioned .ab-performances-section .content,
.ip-sectioned .ab-collab-section .content,
.ip-sectioned .ab-educator-section .content,
.ip-sectioned .ab-awards-section .content,
.ip-sectioned .ab-foundation-section .content {
  font-size: inherit;
  line-height: inherit;
}

/* ── Shared: .btgrid container width for all about sections ── */
.ip-sectioned .ab-bio-section .btgrid,
.ip-sectioned .ab-recognition-section .btgrid,
.ip-sectioned .ab-legacy-section .btgrid,
.ip-sectioned .ab-collab-section .btgrid,
.ip-sectioned .ab-educator-section .btgrid,
.ip-sectioned .ab-awards-section .btgrid,
.ip-sectioned .ab-foundation-section .btgrid {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   S1 — Biography Hero
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-bio-section {
  background: hsl(29, 45%, 93%);
  padding: 0;
}
.ip-sectioned .ab-bio-section .row {
  align-items: stretch;
  gap: 0;
  min-height: 600px;
}
/* Image col: .content acts as a full-height container */
.ip-sectioned .ab-bio-section .col-md-5 .content {
  height: 100%;
  padding: 0;
  margin: 0;
  min-height: 500px;
}
.ab-bio-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.ab-bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 0;
  margin: 0;
}
.ab-bio-content {
  padding: 5rem 4rem 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-bio-name {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  text-align: left !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
}
.ab-bio-name::after { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   S2 — Global Recognition (list left, photo right)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-recognition-section {
  background: var(--white);
  padding: 5rem 0;
}
.ip-sectioned .ab-recognition-section .row-1 {
  align-items: stretch;
  gap: 3.5rem;
}
/* Image col: content is just a height wrapper */
.ip-sectioned .ab-recognition-section .col-md-5 .content {
  height: 100%;
  padding: 0;
  margin: 0;
}
.ab-rec-list {
  margin-top: 1.5rem;
}
.ab-rec-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid hsl(29, 30%, 88%);
}
.ab-rec-row:first-child { padding-top: 0; }
.ab-rec-row:last-child  { border-bottom: none; padding-bottom: 0; }
.ab-rec-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--darkAccent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: transparent;
  margin-top: 0.1rem;
  /* prevent btgrid-render .content > *:first-child from collapsing margin */
  flex-basis: 40px;
}
.ab-rec-body { flex: 1; }
.ab-rec-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
  margin-top: 0 !important;
  line-height: 1.3;
}
.ab-rec-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: hsl(0, 0%, 30%) !important;
  margin: 0 !important;
}
.ab-rec-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 10px;
}
.ab-rec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 10px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   S3 — Musical Legacy (dark violin bg, timeline)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-legacy-section {
  background: var(--accent);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.ip-sectioned .ab-legacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.025'%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/svg%3E");
  pointer-events: none;
}
.ip-sectioned .ab-legacy-section .btgrid {
  position: relative;
  z-index: 1;
}
/* Override btgrid-render .content colours for dark bg */
.ip-sectioned .ab-legacy-section .content h2 {
  color: var(--lightAccent) !important;
  text-align: center;
}
.ip-sectioned .ab-legacy-section .content h2::after {
  background: var(--darkAccent) !important;
  margin: 0.75rem auto 0;
}
/* Reset paragraph colour cascade from btgrid-render */
.ip-sectioned .ab-legacy-section .content p {
  color: rgba(255,255,255,0.68) !important;
}
.ab-legacy-sub {
  color: rgba(255,255,255,0.65) !important;
  font-size: 1.05rem !important;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem !important;
}
/* Timeline: .content in the row-2 cols acts as a flex column */
.ip-sectioned .ab-legacy-section .row-2 .content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-timeline-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.ab-timeline-item:last-child { margin-bottom: 0; }
.ab-tl-num {
  flex-shrink: 0;
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--darkAccent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--darkAccent);
  margin-top: 0.15rem;
}
.ab-tl-body { flex: 1; }
.ab-tl-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lightAccent) !important;
  margin-bottom: 0.5rem;
  margin-top: 0 !important;
  line-height: 1.3;
}
.ab-tl-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68) !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   S4 — Performances Around the World (map bg)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-performances-section {
  background-color: var(--accent);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
}
.ab-perf-overlay {
  background: rgba(31, 16, 5, 0.82);
  padding: 5.5rem 0;
}
.ab-perf-overlay .btgrid {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
.ip-sectioned .ab-performances-section .content h2 {
  color: var(--lightAccent) !important;
  text-align: center;
}
.ip-sectioned .ab-performances-section .content h2::after {
  background: var(--darkAccent) !important;
  margin: 0.75rem auto 0;
}
.ip-sectioned .ab-performances-section .content p {
  color: rgba(255,255,255,0.65) !important;
}
.ab-perf-sub {
  text-align: center;
  margin-bottom: 3rem !important;
}
/* venue cols: content is just a container — no extra padding */
.ip-sectioned .ab-performances-section .row-2 .content {
  padding: 0;
}
.ab-venue-item {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ab-venue-item:last-child { border-bottom: none; }
.ab-venue-num {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--darkAccent);
  flex-shrink: 0;
}
.ab-venue-name {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   S5 — Musical Collaborations (list left, text right)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-collab-section {
  background: hsl(29, 45%, 93%);
  padding: 5.5rem 0;
}
/* collab-list col: content wraps a dark card */
.ip-sectioned .ab-collab-section .col-md-5 .content {
  height: 100%;
  padding: 0;
}
.ab-collab-list {
  background: var(--accent);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  height: 100%;
  box-sizing: border-box;
}
.ab-collab-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.ab-collab-item:last-child { border-bottom: none; }
.ab-collab-arrow {
  color: var(--darkAccent);
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.ab-collab-text { padding-left: 1rem; }
.ab-collab-text p { color: hsl(0,0%,22%) !important; }

/* ═══════════════════════════════════════════════════════════
   S6 — Educator & Mentor (institution cards)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-educator-section {
  background: var(--white);
  padding: 5.5rem 0;
}
/* card cols: content is just a wrapper */
.ip-sectioned .ab-educator-section .row-2 .content {
  height: 100%;
  padding: 0;
}
.ab-edu-card {
  border: 1.5px solid hsl(29, 30%, 84%);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  background: hsl(29, 40%, 97%);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.ab-edu-card:hover {
  border-color: var(--darkAccent);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.ab-edu-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.ab-edu-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent) !important;
  margin-bottom: 0.4rem;
  margin-top: 0 !important;
  line-height: 1.35;
}
.ab-edu-country {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(0,0%,50%);
  margin-bottom: 0.65rem;
}
.ab-edu-type {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--accent);
  color: var(--lightAccent);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   S7 — Awards & Honors (dark violin bg)
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-awards-section {
  background: var(--accent);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.ip-sectioned .ab-awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.025'%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/svg%3E");
  pointer-events: none;
}
.ip-sectioned .ab-awards-section .btgrid {
  position: relative;
  z-index: 1;
}
.ip-sectioned .ab-awards-section .content h2 {
  color: var(--lightAccent) !important;
  text-align: center;
}
.ip-sectioned .ab-awards-section .content h2::after {
  background: var(--darkAccent) !important;
  margin: 0.75rem auto 0;
}
.ip-sectioned .ab-awards-section .content p {
  color: rgba(255,255,255,0.7) !important;
  text-align: center;
}
.ip-sectioned .ab-awards-section .row-2,
.ip-sectioned .ab-awards-section .row-3 {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
/* award cols: content is just a wrapper */
.ip-sectioned .ab-awards-section .row-2 .content,
.ip-sectioned .ab-awards-section .row-3 .content {
  height: 100%;
  padding: 0;
}
.ab-award-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s;
}
.ab-award-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--darkAccent);
}
.ab-award-badge {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ab-award-body { flex: 1; }
.ab-award-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lightAccent) !important;
  margin-bottom: 0.4rem;
  margin-top: 0 !important;
  line-height: 1.3;
}
.ab-award-year {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--darkAccent);
  text-transform: uppercase;
  margin-right: 0.5rem;
  margin-bottom: 0.4rem;
}
.ab-award-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ab-award-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--darkAccent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.75rem;
}
.ab-award-note p {
  font-size: 0.97rem !important;
  color: rgba(255,255,255,0.72) !important;
  margin: 0 !important;
  text-align: left !important;
}
.ab-award-note strong { color: var(--darkAccent); }

/* ═══════════════════════════════════════════════════════════
   S8 — Kalashree Foundation
═══════════════════════════════════════════════════════════ */
.ip-sectioned .ab-foundation-section {
  background: hsl(29, 45%, 93%);
  padding: 5.5rem 0;
}
.ip-sectioned .ab-foundation-section .btgrid {
  max-width: 860px;
}
.ip-sectioned .ab-foundation-section .content h2 { text-align: center; }
.ip-sectioned .ab-foundation-section .content p {
  color: hsl(0,0%,22%) !important;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ip-sectioned .ab-bio-section .row {
    flex-direction: column;
    min-height: unset;
  }
  .ip-sectioned .ab-bio-section [class*="col-md-"] {
    flex: 0 0 100% !important; width: 100%;
  }
  .ab-bio-image-wrap { min-height: 60vw; max-height: 420px; }
  .ip-sectioned .ab-bio-section .col-md-5 .content { min-height: unset; }
  .ab-bio-content { padding: 3rem 1.5rem; }

  .ip-sectioned .ab-collab-section .row-2 { flex-direction: column; }
  .ip-sectioned .ab-collab-section [class*="col-md-"] {
    flex: 0 0 100% !important;
  }
  .ab-collab-text { padding-left: 0; margin-top: 1.5rem; }

  .ip-sectioned .ab-awards-section .row-2,
  .ip-sectioned .ab-awards-section .row-3 { gap: 1rem; }
}

@media (max-width: 768px) {
  .ip-sectioned .ab-recognition-section .row-1 {
    flex-direction: column; gap: 2rem;
  }
  .ip-sectioned .ab-recognition-section [class*="col-md-"] {
    flex: 0 0 100% !important; width: 100%;
  }
  .ab-rec-image-wrap { min-height: 280px; }

  .ip-sectioned .ab-performances-section .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .ip-sectioned .ab-performances-section [class*="col-md-3"] {
    flex: 0 0 100% !important; width: 100%;
  }

  .ip-sectioned .ab-legacy-section .row-2 { flex-direction: column; }
  .ip-sectioned .ab-legacy-section [class*="col-md-6"] {
    flex: 0 0 100% !important;
  }

  .ip-sectioned .ab-awards-section .row-2,
  .ip-sectioned .ab-awards-section .row-3 { flex-direction: column; }
  .ip-sectioned .ab-awards-section [class*="col-md-6"] {
    flex: 0 0 100% !important;
  }

  .ip-sectioned .ab-educator-section .row-2 { flex-direction: column; }
  .ip-sectioned .ab-educator-section [class*="col-md-4"] {
    flex: 0 0 100% !important;
  }
}
/*About */
/*Contact*/
/* ── Hero banner ─────────────────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 340px;
  background-image: url('https://images.squarespace-cdn.com/content/v1/618ad3a388221248eca1a4db/9ecca7ac-536e-4468-8e20-bf010a1f9a06/Kala-Ramnath-Carnatic-Violin-St-Martin-in-the-Fields-2024-Original-e1750429529732-2048x1144.jpg.webp');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.ct-hero-overlay {
  width: 100%;
  padding: 4rem 0 3rem;
  background: linear-gradient(
    to bottom,
    rgba(31,16,5,0.28) 0%,
    rgba(31,16,5,0.78) 100%
  );
}
.ct-hero-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--darkAccent);
  margin-bottom: 0.6rem;
}
.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.ct-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 500px;
}
 
/* ── Section wrapper ─────────────────────────────────────── */
.ct-section {
  padding: 5rem 0 6rem;
  background: hsl(29, 45%, 93%);
}
 
/* ── Left info panel ─────────────────────────────────────── */
.ct-info {
  padding-top: 0.5rem;
}
/* Typography cascade resets for btgrid-render inside ct-info */
.ct-info.btgrid-render .content h2 {
  text-align: left !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
}
.ct-info.btgrid-render .content h2::after {
  margin: 0.6rem 0 1.25rem !important;
}
.ct-info.btgrid-render .content p {
  color: hsl(0,0%,25%) !important;
  font-size: 1rem !important;
  line-height: 1.85 !important;
}
.ct-info.btgrid-render .content a {
  color: var(--darkAccentdip);
  font-weight: 600;
}
 
/* Fallback (non-admin) styles */
.ct-info-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.ct-info-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: hsl(0,0%,25%);
  margin-bottom: 1rem;
}
.ct-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--darkAccent);
}
.ct-detail-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ct-detail-link {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--darkAccentdip);
  text-decoration: none;
  word-break: break-all;
}
.ct-detail-link:hover { color: var(--accent); text-decoration: underline; }
 
.ct-social { margin-top: 2rem; }
.ct-social-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(0,0%,45%);
  margin-bottom: 0.85rem;
}
.ct-social-links {
  display: flex;
  gap: 0.75rem;
}
.ct-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid hsl(29,30%,78%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ct-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
 
/* ── Right form card ─────────────────────────────────────── */
.ct-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.75rem 3rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}
.ct-form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
 
/* Labels */
.ct-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: hsl(0,0%,18%);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.ct-req {
  font-weight: 400;
  color: hsl(0,0%,52%);
  font-size: 0.82rem;
}
 
/* Inputs — override Bootstrap's form-control to match site palette */
.ct-input.form-control {
  background: hsl(29,40%,96%);
  border: 1.5px solid hsl(29,30%,82%);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsl(0,0%,15%);
  padding: 0.8rem 1rem;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-input.form-control:focus {
  border-color: var(--darkAccentdip);
  box-shadow: 0 0 0 3px hsl(30,60%,90%);
  background: hsl(29,40%,96%);
}
.ct-input.form-control::placeholder { color: hsl(0,0%,60%); }
textarea.ct-input.form-control { resize: vertical; min-height: 130px; }
 
/* Error */
.ct-error {
  background: hsl(0,60%,96%);
  border-left: 3px solid hsl(0,65%,55%);
  color: hsl(0,50%,35%);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
 
/* Submit */
.ct-submit-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--lightAccent);
  border: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  margin-top: 0.5rem;
}
.ct-submit-btn:hover:not(:disabled) {
  background: hsl(31,71%,8%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.ct-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
 
/* Success */
.ct-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.ct-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(140,50%,45%);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.ct-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.ct-success p { color: hsl(0,0%,35%); font-size: 0.97rem; }
 
/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .ct-form-card { padding: 2rem 1.75rem; }
}
@media (max-width: 576px) {
  .ct-hero { min-height: 260px; }
  .ct-hero-overlay { padding: 3rem 0 2rem; }
  .ct-section { padding: 3rem 0 4rem; }
  .ct-form-card { padding: 1.75rem 1.25rem; border-radius: 10px; }
  .ct-submit-btn { font-size: 0.82rem; }
}
/*Contact Page*/