@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
  --bg: #f5f5f5;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text-muted: #5b5b5b;
  --accent: #111111;
  --shadow-soft: 0 24px 80px rgba(15, 20, 30, 0.09);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.38), 0 20px 60px rgba(15, 20, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 42%), #f5f5f5;
}

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

button,
input,
a {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.hero-section {
  min-height: calc(100vh - 4.2rem);
  position: relative;
  display: grid;
  align-items: center;
  padding: 4rem 0 3rem;
  overflow: hidden;
  color: black;
  background: whitesmoke;
}

.hero-section .container {
  max-width: none;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #061109;
  pointer-events: none;
}

.hero-bg img {
  width: min(100vw, 1280px);
  height: min(100%, 720px);
  object-fit: contain;
  object-position: right center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 25, 12, 0.88) 0%, rgba(3, 25, 12, 0.72) 34%, rgba(3, 25, 12, 0.38) 68%, rgba(3, 25, 12, 0.62) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 45%, rgba(65, 204, 88, 0.16), transparent 6%),
    linear-gradient(180deg, rgba(2, 15, 7, 0.04), rgba(2, 15, 7, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 5px);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start; /* align copy to the left */
  align-items: center; /* vertical center */
  width: 100%;
  padding: 0 0 0 2rem; /* space from left edge */
}

.hero-copy {

  width: 100%;
  text-align: Left;
  margin-left: clamp(1rem, 10vw, 150px);
  
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  color: #41e56e;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.66rem;
  font-weight: 700;
}

.hero-kicker i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #41e56e;
  box-shadow: 0 0 24px rgba(65, 229, 110, 0.8);
}

.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
  white-space: nowrap;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: inline;
}

.hero-copy h1 strong {
  color: #f1cb72;
}

.hero-copy p {
  max-width: none;
  margin: 1.2rem 0 1.35rem;
}

.hero-topics {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(0.72rem, 1vw, 0.84rem) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy blockquote {
  position: relative;
  margin: 1.75rem 0 0;
  padding: 1rem 0 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.84rem, 1.4vw, 0.9rem);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid #29dc67;
}

.hero-copy blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  height: 1px;
  background: #29dc67;
}

.hero-since {
  position: absolute;
  top: 3rem;
  right: 3.8rem;
  z-index: 3;
  min-width: 5.2rem;
  padding: 0.8rem 1rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  color: #f1cb72;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.hero-since span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-since strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.hero-vertical {
  position: absolute;
  right: 2.7rem;
  bottom: 2.5rem;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
  background: #111111;
  color: #fff;
  box-shadow: 0 24px 40px rgba(17, 17, 17, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  background: rgba(255, 255, 255, 0.9);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 0 0;
}

.hero-card {
  width: min(100%, 380px);
  background: var(--surface-strong);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 44px 90px rgba(15, 20, 30, 0.14);
}

.hero-card .card-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.hero-card p {
  margin: 0 0 1.75rem;
  color: #555;
  line-height: 1.8;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-stats div {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 20px;
  text-align: center;
}

.card-stats span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.card-stats small {
  color: #777;
}

.section-header {
  padding-top: 2rem;
  text-align: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #6c6c6c;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  font-family: 'Bebas Neue', cursive;
}

.about-section,
.youtube-section,
.featured-program-section,
.gallery-preview,
.sessions-section,
.expertise-section,
.contact-section {
  padding: 4rem 0;
}

.featured-program-section {
  background: whitesmoke;
  color: #111111;
}

.featured-program-section .section-header {
  padding: 0 1.2rem 1.75rem;
}

.featured-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.page-program-grid {
  padding-bottom: 4rem;
}

.featured-program-card {
  position: relative;
  min-height: clamp(360px, 36vw, 420px);
  overflow: hidden;
  border: 1px solid rgba(37, 75, 41, 0.18);
  border-radius: 0;
  background: #061109;
  color: #5ff05d;
  box-shadow: 0 20px 54px rgba(15, 20, 30, 0.14);
}

.featured-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 8, 3, 0.08) 0%, rgba(1, 8, 3, 0.28) 44%, rgba(1, 8, 3, 0.94) 73%, #010802 100%),
    linear-gradient(90deg, rgba(1, 8, 3, 0.32), transparent 32%, rgba(1, 8, 3, 0.18));
  pointer-events: none;
}

.featured-program-image {
  position: absolute;
  inset: 0;
}

.featured-program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.68);
}

.featured-program-year {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.1rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(242, 207, 68, 0.72);
  color: #f2d24c;
  background: rgba(0, 0, 0, 0.48);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  line-height: 1;
}

.featured-program-copy {
  position: absolute;
  left: clamp(1.25rem, 2vw, 1.55rem);
  right: clamp(1.25rem, 2vw, 1.55rem);
  bottom: clamp(1.35rem, 2vw, 1.75rem);
  z-index: 2;
}

.featured-program-copy h3 {
  margin: 0 0 0.25rem;
  color: #69f064;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 0.95;
  text-transform: uppercase;
}

.featured-program-location {
  margin: 0;
  color: rgba(97, 231, 83, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.featured-program-participants {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
  color: #f0d044;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-program-participants::before {
  content: "";
  flex: 0 0 1rem;
  width: 1rem;
  height: 1px;
  background: #f0d044;
}

.featured-program-description {
  margin: 0;
  color: rgba(95, 216, 83, 0.76);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .featured-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .featured-program-section .section-header {
    padding-bottom: 1.25rem;
    text-align: center;
  }

  .featured-program-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .featured-program-card {
    min-height: 380px;
  }
}

.gallery-grid {
  width: min(100vw, 1500px);
  margin: 1rem auto 0;
  padding: 0 10px;
}

.gallery-grid-stack,
.reel-wall-stack {
  display: grid;
  gap: 10px;
  width: 100%;
}

.gallery-grid-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(132px, 1fr));
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-grid-row::-webkit-scrollbar {
  display: none;
}

.gallery-preview .gallery-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(84, 230, 85, 0.22);
  border-radius: 10px;
  background: #111;
  box-shadow: inset 0 -80px 80px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.gallery-preview .gallery-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-preview .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease;
}

.gallery-preview .gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(114, 255, 98, 0.78);
  filter: saturate(1.08);
}

.gallery-preview .gallery-card:hover::before {
  background: rgba(0, 0, 0, 0.12);
}

.gallery-card-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.gallery-preview .gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-preview .reel-badge,
.gallery-preview .poster-play,
.gallery-preview .poster-number,
.gallery-preview .poster-label,
.gallery-preview .gallery-card strong {
  position: absolute;
  z-index: 2;
}

.gallery-preview .reel-badge {
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #72ff62;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-preview .poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid rgba(114, 255, 98, 0.86);
  color: #72ff62;
  font-size: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-preview .poster-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #72ff62;
}

.gallery-preview .poster-number {
  left: 10px;
  bottom: 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.gallery-preview .poster-label {
  right: 10px;
  bottom: 13px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.gallery-preview .gallery-card strong {
  left: 10px;
  right: 10px;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 0.95;
  text-align: left;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .gallery-grid-row {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 680px) {
  .gallery-grid-row {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    width: 100%;
  }
}

.gallery-preview .gallery-card-year {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(124, 255, 92, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b7ff8a;
  background: rgba(0, 0, 0, 0.35);
}

.gallery-preview .gallery-card-copy h3 {
  margin: 0;
  color: #9cff7a;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.gallery-preview .gallery-card-copy p {
  margin: 0.65rem 0 0;
  color: rgba(235, 235, 235, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 18rem;
}

.gallery-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.gallery-actions .btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  min-width: auto;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}

.reels-carousel {
  background: whitesmoke;
  color: #1a1a1a;
  overflow: hidden;
  padding-bottom: 3rem;
}

.reels-carousel .section-header {
  padding-bottom: 0.5rem;
}

.reel-wall {
  display: grid;
  grid-template-columns: repeat(9, minmax(132px, 1fr));
  gap: 10px;
  width: min(100vw, 1500px);
  margin: 1rem auto 0;
  padding: 0 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reel-wall::-webkit-scrollbar {
  display: none;
}

.reel-poster-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(84, 230, 85, 0.22);
  border-radius: 10px;
  padding: 0;
  color: #72ff62;
  cursor: default;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 6, 2, 0.82)),
    var(--reel-thumb, url('/static/img/dipeshhero.png')) center / cover no-repeat;
  box-shadow: inset 0 -80px 80px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.reel-poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease;
}

.reel-poster-card:hover {
  transform: translateY(-4px);
  border-color: rgba(114, 255, 98, 0.78);
  filter: saturate(1.08);
}

.reel-poster-card:hover::before {
  background: rgba(0, 0, 0, 0.12);
}

.reel-poster-card .reel-badge {
  z-index: 2;
}

.reel-poster-embed,
.reel-poster-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  object-fit: cover;
  pointer-events: auto;
}

.reel-fallback-card,
.page-reel-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74)),
    var(--reel-thumb, url('/static/img/dipeshhero.png')) center / cover no-repeat;
}

.reel-fallback-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: #ffffff;
  background: #1877f2;
  font-size: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.reel-fallback-card strong,
.page-reel-fallback strong {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.reel-open-link {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 16px);
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.reel-open-link:hover {
  background: #1877f2;
}

.reel-view-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-view-trigger:hover {
  background: rgba(24, 119, 242, 0.82);
  transform: translate(-50%, -50%) scale(1.06);
}

.page-reel-card {
  position: relative;
}

.page-reel-view-trigger {
  top: calc(50% - 1.35rem);
}

.reel-viewer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(84, 230, 85, 0.16), transparent 34rem),
    rgba(0, 9, 4, 0.92);
}

.reel-viewer.is-open {
  display: flex;
}

.reel-viewer-card {
  position: relative;
  width: min(88vw, 310px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(84, 230, 85, 0.46);
  border-radius: 18px;
  background: #000000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
}

.reel-viewer-card video,
.reel-viewer-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.reel-viewer-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.8)),
    var(--viewer-thumb, url('/static/img/dipeshhero.png')) center / cover no-repeat;
}

.reel-viewer-empty strong {
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.reel-viewer-empty span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.4;
}

.reel-viewer-open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: #ffffff;
  background: #1877f2;
  font-size: 0.74rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.reel-viewer-close,
.reel-viewer-nav {
  position: absolute;
  z-index: 1000;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 230, 85, 0.56);
  border-radius: 999px;
  color: #72ff62;
  background: rgba(0, 20, 8, 0.72);
  cursor: pointer;
}

.reel-viewer-close {
  right: 1.2rem;
  top: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
}

.reel-viewer-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
}

.reel-viewer-prev {
  left: max(1rem, calc(50% - 250px));
}

.reel-viewer-next {
  right: max(1rem, calc(50% - 250px));
}

.reel-viewer-progress {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 1000;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  width: min(88vw, 420px);
  transform: translateX(-50%);
}

.reel-viewer-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.38rem;
}

.reel-viewer-dot {
  width: 0.42rem;
  height: 0.42rem;
  border: 0;
  border-radius: 999px;
  background: rgba(114, 255, 98, 0.28);
  cursor: pointer;
}

.reel-viewer-dot.is-active {
  background: #72ff62;
  transform: scale(1.25);
}

.reel-viewer-count {
  color: rgba(114, 255, 98, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid rgba(114, 255, 98, 0.86);
  color: #72ff62;
  font-size: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}

.poster-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #72ff62;
}

.poster-number,
.poster-label,
.reel-poster-card strong {
  position: absolute;
  z-index: 2;
  text-transform: uppercase;
}

.poster-number {
  left: 10px;
  bottom: 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.poster-label {
  right: 10px;
  bottom: 13px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.reel-poster-card strong {
  left: 10px;
  right: 10px;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 0.95;
  text-align: left;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .reel-wall {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .reel-poster-card {
    min-width: 150px;
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .reel-wall {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    width: 100%;
  }
}

.reel-cover {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.9), rgba(0, 0, 0, 0.75)), url('/static/img/dipeshhero.png') center/cover no-repeat;
  background-size: cover;
  text-decoration: none;
  overflow: hidden;
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 235, 123, 0.35);
}

.reel-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 0;
  background: #101214;
  overflow: hidden;
  position: relative;
}

.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-cover {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.9), rgba(0, 0, 0, 0.75)), url('/static/img/dipeshhero.png') center/cover no-repeat;
  background-size: cover;
  text-decoration: none;
  overflow: hidden;
}

.reel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #7cff5c;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

.reel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.reel-number {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.85rem;
  color: rgba(188, 255, 153, 0.9);
  font-weight: 700;
}

.reel-info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.reel-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #f7f7f7;
  line-height: 1.35;
}

.reel-info span,
.reel-info a {
  display: inline-block;
  color: rgba(124, 255, 92, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.reel-info a:hover {
  color: #7cff5c;
}

/* Home media sections: keep the older clean scroller look. */
.gallery-preview,
.reels-carousel {
  background: #f5f5f5;
  color: #111111;
  padding: 4rem 0;
}

.gallery-preview .section-header,
.reels-carousel .section-header {
  padding: 0 1.2rem 0.8rem;
}

.featured-program-section .section-header {
  padding-bottom: 0.9rem;
}

.gallery-grid {
  margin-top: 0;
}

.reel-wall {
  margin-top: 0;
}

.gallery-preview .media-heading h3,
.reels-carousel .media-heading h3 {
  color: #111111;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
}

.media-heading h3 a {
  color: inherit;
  text-decoration: none;
}

.gallery-preview .media-heading span,
.reels-carousel .media-heading span {
  background: #111111;
}

.gallery-grid,
.reel-wall {
  width: min(1120px, 100%);
  padding: 0 1.2rem;
}

.gallery-grid-stack,
.reel-wall-stack {
  gap: 1rem;
}

.reels-carousel .reel-wall-stack {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.gallery-grid-row,
.reel-wall {
  gap: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, 15vw, 170px);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
}

.gallery-preview .gallery-card,
.reel-poster-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 20, 30, 0.12);
  filter: none;
  scroll-snap-align: start;
}

.gallery-preview .gallery-card {
  aspect-ratio: 4 / 3;
}

.reel-poster-card {
  aspect-ratio: 9 / 16;
  color: #111111;
  width: 100%;
  min-width: 0;
}

.reel-wall {
  width: 100%;
  padding: 0;
  grid-auto-columns: clamp(150px, 14vw, 160px);
  justify-content: start;
}

.gallery-preview .gallery-card::before,
.reel-poster-card::before {
  display: none;
}

.gallery-preview .gallery-card:hover,
.reel-poster-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.12);
  filter: none;
  box-shadow: 0 28px 70px rgba(15, 20, 30, 0.16);
}

.gallery-preview .reel-badge,
.gallery-preview .poster-number,
.gallery-preview .poster-label,
.gallery-preview .gallery-card strong,
.reel-poster-card .reel-badge,
.reel-poster-card .poster-label {
  display: none;
}

.reel-poster-card .poster-play {
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.46);
}

.reel-poster-card .poster-play::before {
  border-left-color: #ffffff;
}

@media (max-width: 900px) {
  .gallery-grid-row,
  .reel-wall {
    grid-auto-columns: clamp(135px, 34vw, 150px);
  }

  .reel-wall {
    grid-auto-columns: clamp(135px, 32vw, 145px);
  }
}

@media (max-width: 640px) {
  .gallery-grid,
  .reel-wall {
    padding: 0 1rem;
  }

  .reels-carousel .reel-wall-stack {
    padding: 0 1rem;
  }

  .reels-carousel .reel-wall {
    padding: 0;
  }

  .gallery-grid-row,
  .reel-wall {
    grid-auto-columns: clamp(128px, 58vw, 150px);
    gap: 0.75rem;
  }

  .reel-wall {
    grid-auto-columns: clamp(128px, 54vw, 145px);
  }
}

.page-shell {
  padding-top: 1rem;
  min-height: 100vh;
}

.about-page-layout,
.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.35rem, 3.4vw, 2.6rem);
  align-items: start;
  padding-top: clamp(0.75rem, 2.4vw, 1.8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.about-page-image,
.contact-page-image {
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
  box-shadow: 0 24px 70px rgba(15, 20, 30, 0.14);
}

.about-page-image img,
.contact-page-image img {
  width: 100%;
  height: clamp(320px, 40vw, 490px);
  object-fit: cover;
}

.about-page-content,
.contact-page-content {
  min-width: 0;
}

.contact-page-image,
.contact-page-content {
  align-self: start;
}

.contact-page-content {
  padding-top: 0;
}

.about-page-content h1,
.contact-page-content h1 {
  margin: 0 0 0.75rem;
  color: #111111;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-page-content h2 {
  margin: 0 0 1rem;
  color: #222222;
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  line-height: 1.22;
}

.about-page-content p,
.contact-page-content p {
  max-width: 39rem;
  margin: 0 0 1rem;
  color: #565656;
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.page-contact-card {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 10px;
  color: #111111;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 20, 30, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 24px 60px rgba(15, 20, 30, 0.14);
}

.page-contact-card i {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 1rem;
}

.page-contact-card span {
  color: #6c6c6c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-contact-card strong {
  min-width: 0;
  color: #111111;
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.page-heading {
  padding: 0.35rem 1.2rem 1.25rem;
  text-align: center;
}

.page-heading-compact {
  padding-top: 0.25rem;
  padding-bottom: 1rem;
}

.page-heading .section-title,
.media-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.page-heading .section-title span,
.media-heading span {
  width: clamp(3rem, 8vw, 5.5rem);
  height: 1px;
  background: #111111;
}

.page-heading h1,
.media-heading h3 {
  margin: 0;
  color: #111111;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-heading p {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: #5b5b5b;
}

.media-header-row {
  position: relative;
}

.media-all-link {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #111111;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
  padding-bottom: 4rem;
}

.page-gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
  box-shadow: 0 18px 48px rgba(15, 20, 30, 0.12);
}

.page-gallery-card img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.page-gallery-card:hover img {
  transform: scale(1.04);
}

.page-reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 4rem;
}

.page-reel-card {
  overflow: hidden;
  border: 1px solid rgba(84, 230, 85, 0.22);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 20, 30, 0.12);
}

.page-reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13.5;
  overflow: hidden;
  background: #000000;
}

.page-reel-frame iframe,
.page-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.page-reel-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 0.9rem;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.page-reel-open-link:hover {
  color: #1877f2;
}

.page-reel-card:hover .page-reel-fallback {
  filter: saturate(1.08);
}

@media (max-width: 900px) {
  .page-reel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .media-header-row {
    display: grid;
    gap: 0.85rem;
  }

  .media-all-link {
    position: static;
    justify-self: center;
    transform: none;
  }

  .page-heading .section-title,
  .media-heading {
    gap: 0.75rem;
  }

  .page-heading .section-title span,
  .media-heading span {
    width: 2.6rem;
  }

  .page-gallery-grid,
  .page-reel-grid {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .page-reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .page-gallery-grid {
    columns: 1;
  }

  .reel-viewer {
    padding: 0.9rem;
  }

  .reel-viewer-card {
    width: min(78vw, 300px);
  }

  .reel-viewer-nav {
    bottom: 1.6rem;
    top: auto;
    width: 2.75rem;
    height: 2.75rem;
    transform: none;
  }

  .reel-viewer-prev {
    left: 1.2rem;
  }

  .reel-viewer-next {
    right: 1.2rem;
  }

  .reel-viewer-progress {
    bottom: 1.35rem;
    width: min(54vw, 230px);
  }
}

@media (max-width: 900px) {
  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.about-copy h2,
.section-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 1.2rem;
}

.about-copy p,
.about-details p {
  color: #565656;
  font-size: 1.05rem;
  max-width: 46rem;
}

.about-details {
  background: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.session-card {
  background: var(--surface-strong);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.session-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 64px rgba(15, 20, 30, 0.12);
}

.session-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1.35rem;
  background: #eaeaea;
  font-weight: 700;
  color: #111;
}

.session-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.session-card p {
  margin: 0;
  color: #5f5f5f;
  line-height: 1.8;
}

.youtube-section {
  position: relative;
  overflow: hidden;
  background: whitesmoke;
  color: #111111;
}

.glimpse-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  justify-content: center;
  gap: 1.35rem;
  width: 100%;
  max-width: 1120px;
}

.glimpse-dot {
  position: absolute;
  top: 0.2rem;
  left: 5%;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #111111;
  border-radius: 50%;
}

.glimpse-dot::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #111111;
  transform: translate(-50%, -50%);
}

.glimpse-heading {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #111111;
  text-align: center;
}

.glimpse-heading span {
  width: clamp(3rem, 7vw, 6rem);
  height: 1px;
  background: #111111;
}

.glimpse-heading h2,
.glimpse-heading h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glimpse-meta,
.glimpse-meta span,
.glimpse-meta a,
.glimpse-meta i {
  color: #111111;
}

.glimpse-video {
  width: min(calc(100vw - 2.4rem), 900px);
  justify-self: center;
}

.glimpse-list {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1120px;
}

.glimpse-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 20, 30, 0.12);
}

.glimpse-card .youtube-frame {
  border: none;
  box-shadow: none;
}

.glimpse-card .reel-info {
  padding: 1rem;
  background: #f9f9f9;
}

.glimpse-card .reel-info h3 {
  margin: 0;
  font-size: 1rem;
  color: #111111;
}

.youtube-frame {
  background: #000000;
  border: 1px solid rgba(82, 219, 79, 0.74);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-empty {
  display: grid;
  place-items: center;
  min-height: min(56vw, 506px);
  padding: 2rem;
  border: 1px solid rgba(82, 219, 79, 0.74);
  background: rgba(0, 0, 0, 0.36);
  text-align: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.youtube-empty h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.youtube-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.glimpse-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  color: rgba(96, 220, 88, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.glimpse-meta span:last-child,
.glimpse-meta a {
  justify-self: end;
  color: rgba(96, 220, 88, 0.72);
  text-decoration: none;
}

.glimpse-meta i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #60dc58;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.expertise-tags span {
  display: inline-flex;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: #111;
  font-weight: 600;
}

.contact-section {
  background: whitesmoke;
  color: #111111;
  padding: 4rem 0 1.5rem;
}

.contact-social {
  text-align: center;
}

.connect-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-info {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  justify-content: center;
  color: #111111;
  font-size: 0.95rem;
}

.contact-info span {
  display: inline-block;
  font-weight: 600;
}

.connect-heading span {
  width: 5rem;
  height: 1px;
  background: #111111;
}

.connect-heading h2 {
  margin: 0;
  color: #111111;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-divider {
  background: whitesmoke;
  color: #111111;
  padding: 2rem 0;
}

.section-divider .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.section-divider .section-title span {
  width: 4.5rem;
  height: 1px;
  background: #111111;
}

.section-divider .section-title h2,
.section-divider .section-title h3 {
  margin: 0;
  color: #111111;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.touch-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.touch-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.03);
}

.touch-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.touch-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.08);
}

.touch-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 1.3rem;
  color: #111111;
}

.touch-details {
  text-align: left;
}

.touch-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.45rem;
}

.touch-link {
  display: inline-block;
  font-size: 1rem;
  color: #111111;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 820px) {
  .touch-cards {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 2.8rem);
}

.social-links a {
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-width: 5.8rem;
  color: #111111;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links i {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 999px;
  color: #111111;
  font-family: 'Font Awesome 6 Brands';
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.connect-dot::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #111111;
  transform: translate(-50%, -50%);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  margin-top: 0;
  width: 100%;
  background: #112A48;
  color: #f5f3f7;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer p {
  flex: 0 1 auto;
  min-width: 180px;
  margin: 0;
  line-height: 1.2;
}

.footer-note a {
  color: #f8d348;
}

@media (max-width: 720px) {
  .footer {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer p,
  .footer-note {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .hero-content {
    display: block;
  }

  .about-page-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    padding-top: 0.75rem;
  }

  .about-page-image,
  .contact-page-image {
    max-width: 620px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-card-wrapper {
    justify-content: center;
  }
  .session-grid {
    grid-template-columns: 1fr 1fr;
  }
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-section {
    min-height: calc(100svh - 4.2rem);
    padding: 4rem 0 2rem;
  }
  .hero-bg {
    align-items: flex-start;
    justify-content: center;
  }
  .hero-bg img {
    width: 100%;
    height: auto;
    max-height: 48vh;
    object-position: center top;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(3, 25, 12, 0.12) 0%, rgba(3, 25, 12, 0.74) 42%, rgba(3, 25, 12, 0.96) 100%),
      linear-gradient(90deg, rgba(3, 25, 12, 0.72), rgba(3, 25, 12, 0.2), rgba(3, 25, 12, 0.72));
  }
  .page-shell {
    padding-top: 0.8rem;
  }
  .about-page-layout,
  .contact-page-layout {
    gap: 1.4rem;
    padding-bottom: 3rem;
  }
  .about-page-image img,
  .contact-page-image img {
    height: min(82vw, 360px);
  }
  .about-page-content,
  .contact-page-content {
    text-align: left;
  }
  .page-contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 1rem 1rem 0 1rem;
    justify-content: center;
    align-items: flex-start;
  }
  .hero-copy {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding-right: 0.5rem;
    text-align: center;
  }
  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    white-space: normal;
  }
  .hero-kicker {
    justify-content: center;
    gap: 0;
    letter-spacing: 0.08em;
    font-size: 0.58rem;
  }
  .hero-kicker i {
    display: none;
  }
  .hero-topics {
    font-size: 0.7rem !important;
    letter-spacing: 0.05em;
  }
  .hero-copy blockquote {
    margin-top: 1.5rem;
    padding-left: 1rem;
    font-size: 0.95rem;
    text-align: center;
  }
  .hero-since {
    top: 5.2rem;
    right: 1rem;
    transform: scale(0.82);
    transform-origin: top right;
  }
  .hero-vertical {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .about-section,
  .section-header {
    text-align: left;
  }
  .session-grid {
    grid-template-columns: 1fr;
  }
  .connect-heading {
    margin-bottom: 2.6rem;
  }
  .connect-heading span {
    width: 3rem;
  }
  .social-links {
    gap: 1.4rem;
  }
  .social-links i {
    width: 4rem;
    height: 4rem;
  }
  small {
    font-size: 0.9rem;
  }
  .glimpse-wrap {
    gap: 1.1rem;
  }
  .glimpse-dot {
    display: none;
  }
  .glimpse-heading {
    gap: 0.9rem;
  }
  .glimpse-heading span {
    width: 2.5rem;
  }
  .glimpse-meta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    letter-spacing: 0.2em;
  }
  .glimpse-meta span:last-child,
  .glimpse-meta a {
    justify-self: center;
  }
}
