/* ==========================================================================
   The Nick Graz Show - Complete CSS Stylesheet
   Premium dark theme with gold accents
   Inspired by melrobbins.com - darker, more luxurious
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties & Global Reset
   ========================================================================== */

:root {
  --ngs-bg: #0A0A0A;
  --ngs-surface: #111111;
  --ngs-gold: #D4A843;
  --ngs-gold-light: #F5C518;
  --ngs-gold-dark: #B8932F;
  --ngs-white: #FFFFFF;
  --ngs-text: rgba(255, 255, 255, 0.85);
  --ngs-text-muted: rgba(255, 255, 255, 0.6);
  --ngs-text-dim: rgba(255, 255, 255, 0.5);
  --ngs-glass-bg: rgba(255, 255, 255, 0.04);
  --ngs-glass-border: rgba(255, 255, 255, 0.08);
  --ngs-gold-border: rgba(212, 168, 67, 0.2);
  --ngs-font-h: 'Playfair Display', serif;
  --ngs-font-b: 'Inter', sans-serif;
  --ngs-radius: 16px;
  --ngs-radius-sm: 8px;
  --ngs-radius-lg: 24px;
  --ngs-radius-pill: 50px;
  --ngs-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ngs-transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ngs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --ngs-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --ngs-shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --ngs-shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.15);
  --ngs-glow-gold: 0 0 40px rgba(212, 168, 67, 0.2);
  --ngs-header-h: 80px;
  --ngs-header-h-scrolled: 64px;
  --ngs-z-canvas: 1;
  --ngs-z-content: 2;
  --ngs-z-header: 9999;
  --ngs-z-overlay: 10000;
  --ngs-space-xs: 4px;
  --ngs-space-sm: 8px;
  --ngs-space-md: 16px;
  --ngs-space-lg: 24px;
  --ngs-space-xl: 32px;
  --ngs-space-2xl: 48px;
  --ngs-space-3xl: 64px;
  --ngs-space-4xl: 96px;
  --ngs-space-5xl: 128px;
}

/* Elementor / Theme Overrides */
.elementor-page .ngs-wrapper,
.e-con .ngs-wrapper,
.elementor-widget-container .ngs-wrapper,
.ngs-wrapper {
  color: var(--ngs-text) !important;
  font-family: var(--ngs-font-b) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ngs-wrapper *,
.ngs-wrapper *::before,
.ngs-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ngs-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ngs-wrapper a {
  text-decoration: none;
  color: inherit;
  transition: var(--ngs-transition-fast);
}

.ngs-wrapper ul,
.ngs-wrapper ol {
  list-style: none;
}

.ngs-wrapper button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}


/* ==========================================================================
   2. Common Elements
   ========================================================================== */

/* Section */
.ngs-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  background-color: var(--ngs-bg);
}

.ngs-section--surface {
  background-color: var(--ngs-surface);
}

.ngs-section__inner {
  position: relative;
  z-index: var(--ngs-z-content);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Headings */
.ngs-heading {
  font-family: var(--ngs-font-h);
  color: var(--ngs-gold);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ngs-heading--xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.ngs-heading--lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ngs-heading--md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.ngs-heading--sm {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.ngs-heading--white {
  color: var(--ngs-white);
}

.ngs-heading--center {
  text-align: center;
}

/* Text */
.ngs-text {
  font-family: var(--ngs-font-b);
  color: var(--ngs-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.ngs-text--lg {
  font-size: 1.125rem;
}

.ngs-text--sm {
  font-size: 0.875rem;
}

.ngs-text--center {
  text-align: center;
}

.ngs-text--dim {
  color: var(--ngs-text-dim);
}

/* Highlight */
.ngs-hl {
  color: var(--ngs-gold);
  position: relative;
  display: inline;
}

.ngs-hl--bg {
  background: linear-gradient(120deg, rgba(212, 168, 67, 0.15) 0%, rgba(212, 168, 67, 0.05) 100%);
  padding: 0.05em 0.15em;
  border-radius: 4px;
}

/* Buttons */
.ngs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ngs-space-sm);
  font-family: var(--ngs-font-b);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--ngs-radius-pill);
  cursor: pointer;
  transition: var(--ngs-transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--ngs-gold) 0%, var(--ngs-gold-dark) 100%);
  color: var(--ngs-bg);
  white-space: nowrap;
}

.ngs-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ngs-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--ngs-glow-gold);
  background: linear-gradient(135deg, var(--ngs-gold-light) 0%, var(--ngs-gold) 100%);
}

.ngs-btn:hover::before {
  left: 100%;
}

.ngs-btn:active {
  transform: translateY(0) scale(0.98);
}

.ngs-btn--outline {
  background: transparent;
  border-color: var(--ngs-gold);
  color: var(--ngs-gold);
}

.ngs-btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--ngs-gold-light);
  color: var(--ngs-gold-light);
}

.ngs-btn--watch {
  background: linear-gradient(135deg, var(--ngs-gold) 0%, var(--ngs-gold-dark) 100%);
  color: var(--ngs-bg);
}

.ngs-btn--listen {
  background: transparent;
  border-color: var(--ngs-gold-border);
  color: var(--ngs-gold);
}

.ngs-btn--listen:hover {
  border-color: var(--ngs-gold);
  background: rgba(212, 168, 67, 0.08);
}

.ngs-btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.ngs-btn--sm {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.ngs-btn--text {
  background: transparent;
  color: var(--ngs-gold);
  padding: 8px 0;
  border: none;
  letter-spacing: 0.04em;
}

.ngs-btn--text:hover {
  color: var(--ngs-gold-light);
  box-shadow: none;
  transform: none;
}

.ngs-btn--text::after {
  content: '\2192';
  display: inline-block;
  margin-left: var(--ngs-space-sm);
  transition: transform 0.3s ease;
}

.ngs-btn--text:hover::after {
  transform: translateX(4px);
}

.ngs-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Divider */
.ngs-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--ngs-gold), var(--ngs-gold-light), var(--ngs-gold));
  border: none;
  margin: var(--ngs-space-lg) 0;
  border-radius: 2px;
}

.ngs-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.ngs-divider--wide {
  width: 120px;
}

.ngs-divider--full {
  width: 100%;
  height: 1px;
  background: var(--ngs-gold-border);
}

/* Glass Card Mixin via class */
.ngs-glass {
  background: var(--ngs-glass-bg);
  border: 1px solid var(--ngs-glass-border);
  border-radius: var(--ngs-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ngs-glass--gold {
  border-color: var(--ngs-gold-border);
}


/* ==========================================================================
   3. Header
   ========================================================================== */

.ngs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--ngs-z-header);
  height: var(--ngs-header-h);
  display: flex;
  align-items: center;
  padding: 0 var(--ngs-space-xl);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ngs-glass-border);
  transition: var(--ngs-transition);
}

.ngs-header--scrolled {
  height: var(--ngs-header-h-scrolled);
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--ngs-gold-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.ngs-header--hidden {
  transform: translateY(-100%);
}

.ngs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.ngs-header__logo {
  display: flex;
  align-items: center;
  gap: var(--ngs-space-sm);
  flex-shrink: 0;
  z-index: calc(var(--ngs-z-overlay) + 1);
}

.ngs-header__logo-img {
  height: 40px;
  width: auto;
  transition: var(--ngs-transition);
}

.ngs-header--scrolled .ngs-header__logo-img {
  height: 32px;
}

.ngs-header__logo-text {
  font-family: var(--ngs-font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ngs-white);
  letter-spacing: 0.02em;
}

.ngs-header__logo-text span {
  color: var(--ngs-gold);
}

/* Navigation */
.ngs-header__nav {
  display: flex;
  align-items: center;
  gap: var(--ngs-space-xl);
}

.ngs-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--ngs-space-xl);
}

.ngs-header__nav-link {
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ngs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
}

.ngs-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ngs-gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.ngs-header__nav-link:hover,
.ngs-header__nav-link--active {
  color: var(--ngs-gold);
}

.ngs-header__nav-link:hover::after,
.ngs-header__nav-link--active::after {
  width: 100%;
}

/* Header CTA */
.ngs-header__cta {
  margin-left: var(--ngs-space-lg);
}

/* Burger Menu */
.ngs-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: calc(var(--ngs-z-overlay) + 1);
  position: relative;
}

.ngs-header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ngs-white);
  border-radius: 2px;
  transition: var(--ngs-transition);
  position: absolute;
}

.ngs-header__burger-line:nth-child(1) {
  transform: translateY(-7px);
}

.ngs-header__burger-line:nth-child(2) {
  transform: translateY(0);
}

.ngs-header__burger-line:nth-child(3) {
  transform: translateY(7px);
}

/* Burger open state */
.ngs-header__burger--open .ngs-header__burger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background-color: var(--ngs-gold);
}

.ngs-header__burger--open .ngs-header__burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.ngs-header__burger--open .ngs-header__burger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--ngs-gold);
}

/* Off-Canvas Overlay */
.ngs-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--ngs-z-overlay);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ngs-offcanvas--open {
  opacity: 1;
  visibility: visible;
}

.ngs-offcanvas__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ngs-space-xl);
}

.ngs-offcanvas__link {
  font-family: var(--ngs-font-h);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--ngs-white);
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.ngs-offcanvas--open .ngs-offcanvas__link {
  opacity: 1;
  transform: translateY(0);
}

.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(1) { transition-delay: 0.1s; }
.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(2) { transition-delay: 0.15s; }
.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(3) { transition-delay: 0.2s; }
.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(4) { transition-delay: 0.25s; }
.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(5) { transition-delay: 0.3s; }
.ngs-offcanvas--open .ngs-offcanvas__link:nth-child(6) { transition-delay: 0.35s; }

.ngs-offcanvas__link:hover {
  color: var(--ngs-gold);
}

.ngs-offcanvas__cta {
  margin-top: var(--ngs-space-2xl);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.ngs-offcanvas--open .ngs-offcanvas__cta {
  opacity: 1;
  transform: translateY(0);
}

.ngs-offcanvas__socials {
  display: flex;
  gap: var(--ngs-space-lg);
  margin-top: var(--ngs-space-2xl);
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.ngs-offcanvas--open .ngs-offcanvas__socials {
  opacity: 1;
}

.ngs-offcanvas__social-icon {
  width: 24px;
  height: 24px;
  color: var(--ngs-text-muted);
  transition: color 0.3s ease;
}

.ngs-offcanvas__social-icon:hover {
  color: var(--ngs-gold);
}

body.ngs-offcanvas-open {
  overflow: hidden;
}

/* Header Responsive */
@media (max-width: 1024px) {
  .ngs-header__nav {
    display: none;
  }

  .ngs-header__cta {
    display: none;
  }

  .ngs-header__burger {
    display: flex;
  }
}


/* ==========================================================================
   4. Hero Section
   ========================================================================== */

/* ── Hero: Full-bleed image + quote carousel (Mel Robbins style) ── */

.ngs-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--ngs-bg);
  overflow: hidden;
}

/* Background Image Layer */
.ngs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ngs-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ngs-hero__bg-img--mobile {
  display: none;
}

/* Desktop overlay: gradient from right side for text readability */
.ngs-hero__overlay--desktop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 10%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.6) 55%,
    rgba(0, 0, 0, 0.85) 75%,
    rgba(0, 0, 0, 0.92) 100%
  );
  z-index: 1;
}

/* Mobile overlay: gradient from bottom */
.ngs-hero__overlay--mobile {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 70%
  );
  z-index: 1;
}

/* Right-side content — pinned to right 50% */
.ngs-hero__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: var(--ngs-z-content);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--ngs-space-2xl) var(--ngs-space-2xl) var(--ngs-space-2xl) var(--ngs-space-xl);
}

/* "New Here?" Floating Button */
.ngs-hero__new-here {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ngs-gold);
  color: var(--ngs-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ngs-font-b);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s;
  transform-origin: bottom right;
}

.ngs-hero__new-here:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.5);
  color: var(--ngs-bg);
}

/* Scroll Indicator */
.ngs-hero__scroll-indicator {
  position: absolute;
  bottom: var(--ngs-space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--ngs-z-content);
  width: 24px;
  height: 40px;
  border: 2px solid var(--ngs-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: ngs-bob 2s ease-in-out infinite;
}

.ngs-hero__scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--ngs-gold);
  animation: ngs-scroll-dot 2s ease-in-out infinite;
}

@keyframes ngs-scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.3; }
}

/* ── Hero Text ── */
.ngs-hero__title {
  font-family: var(--ngs-font-h);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--ngs-white);
  line-height: 1.1;
  margin: 0 0 var(--ngs-space-md);
  letter-spacing: -0.02em;
}

.ngs-hero__tagline {
  font-family: var(--ngs-font-b);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 var(--ngs-space-sm);
}

.ngs-hero__desc {
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.ngs-hero__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ngs-gold), var(--ngs-gold-light));
  border: none;
  margin: var(--ngs-space-lg) 0 0 0;
  border-radius: 2px;
}

/* ── Glassmorphism Mini Review Cards (horizontal infinite scroll) ── */
.ngs-hero__minicards {
  overflow: hidden;
  margin-top: var(--ngs-space-xl);
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ngs-hero__minicards-track {
  display: flex;
  gap: 14px;
  animation: ngs-mc-scroll var(--mc-speed, 35s) linear infinite;
  will-change: transform;
}

.ngs-hero__minicards:hover .ngs-hero__minicards-track {
  animation-play-state: paused;
}

@keyframes ngs-mc-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.ngs-hero__mc {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  flex-shrink: 0;
  width: 240px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  cursor: default;
}

.ngs-hero__mc:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ngs-hero__mc-stars {
  font-size: 0.6875rem;
  color: var(--ngs-gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.ngs-hero__mc-quote {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ngs-hero__mc-footer {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ngs-hero__mc-name {
  font-family: var(--ngs-font-b);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ngs-gold);
  line-height: 1.3;
}

.ngs-hero__mc-role {
  font-family: var(--ngs-font-b);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

/* Hero Responsive — Tablet */
@media (max-width: 1024px) {
  .ngs-hero {
    min-height: 90vh;
    min-height: 90svh;
    display: block;
    position: relative;
  }

  .ngs-hero__content {
    position: relative;
    width: 100%;
    min-height: 90vh;
    min-height: 90svh;
    padding: 100px 40px 40px;
    justify-content: flex-end;
  }

  .ngs-hero__scroll-indicator {
    display: none;
  }
}

/* Hero Responsive — Mobile */
@media (max-width: 768px) {
  .ngs-hero {
    min-height: 90vh;
    min-height: 90svh;
    display: block;
    position: relative;
  }

  .ngs-hero__bg-img--desktop { display: none; }
  .ngs-hero__bg-img--mobile  { display: block; }
  .ngs-hero__overlay--desktop { display: none; }
  .ngs-hero__overlay--mobile  { display: block; }

  .ngs-hero__content {
    position: relative;
    width: 100%;
    min-height: 90vh;
    min-height: 90svh;
    padding: 80px 20px 40px;
    justify-content: flex-end;
  }

  .ngs-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .ngs-hero__scroll-indicator {
    display: none;
  }

  .ngs-hero__new-here {
    width: 64px;
    height: 64px;
    font-size: 0.6875rem;
    bottom: 16px;
    right: 16px;
  }

  .ngs-hero__mc {
    width: 200px;
    padding: 12px 14px;
  }

  .ngs-hero__minicards {
    margin-top: 20px;
  }
}

/* Desktop-site mode on mobile: narrow physical screen but wide viewport */
@media (max-width: 1024px) and (max-height: 500px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
  .ngs-hero {
    min-height: auto;
    height: auto;
  }

  .ngs-hero__bg {
    position: absolute;
    inset: 0;
  }

  .ngs-hero__content {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin-left: 0;
    padding: 80px 20px 40px;
    justify-content: flex-end;
  }

  .ngs-hero__mc-strip {
    margin-bottom: 0;
  }
}


/* ==========================================================================
   4b. Trusted By / Logos Strip
   ========================================================================== */

.ngs-trusted {
  position: relative;
  background: var(--ngs-bg);
  padding: var(--ngs-space-xl) 0;
  overflow: hidden;
}

.ngs-trusted__heading {
  font-family: var(--ngs-font-b) !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ngs-text-dim) !important;
  text-align: center;
  margin: 0 0 var(--ngs-space-md) !important;
}

/* Infinite scroll strip */
.ngs-trusted__strip {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ngs-trusted__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ngs-logo-scroll var(--ngs-scroll-speed, 40s) linear infinite;
  will-change: transform;
}

@keyframes ngs-logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.ngs-trusted--pause-hover:hover .ngs-trusted__track {
  animation-play-state: paused;
}

/* Individual items */
.ngs-trusted__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 60px;
  text-decoration: none;
  transition: var(--ngs-transition-fast);
}

.ngs-trusted__item:hover .ngs-trusted__name {
  color: var(--ngs-gold);
}

/* Logo images */
.ngs-trusted__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Grayscale filter mode */
.ngs-trusted--grayscale .ngs-trusted__logo img {
  filter: grayscale(1) brightness(0.7);
  opacity: 0.6;
  transition: var(--ngs-transition);
}

.ngs-trusted--grayscale .ngs-trusted__item:hover .ngs-trusted__logo img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Gold tint filter mode */
.ngs-trusted--gold .ngs-trusted__logo img {
  filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(0.8);
  opacity: 0.7;
  transition: var(--ngs-transition);
}

.ngs-trusted--gold .ngs-trusted__item:hover .ngs-trusted__logo img {
  filter: none;
  opacity: 1;
}

/* Name text */
.ngs-trusted__name {
  font-family: var(--ngs-font-b);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: color 0.3s;
}

.ngs-trusted__subtitle {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* Dot separator between items */
.ngs-trusted__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  flex-shrink: 0;
  margin-right: 60px;
  display: inline-block;
}

/* Fade edges */
.ngs-trusted--fade-edges .ngs-trusted__strip::before,
.ngs-trusted--fade-edges .ngs-trusted__strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.ngs-trusted--fade-edges .ngs-trusted__strip::before {
  left: 0;
  background: linear-gradient(to right, var(--ngs-bg), transparent);
}

.ngs-trusted--fade-edges .ngs-trusted__strip::after {
  right: 0;
  background: linear-gradient(to left, var(--ngs-bg), transparent);
}

/* Trusted By Responsive */
@media (max-width: 768px) {
  .ngs-trusted {
    padding: var(--ngs-space-md) 0;
  }

  .ngs-trusted__name {
    font-size: 0.8125rem;
  }

  .ngs-trusted__item {
    margin-right: 40px;
  }

  .ngs-trusted__sep {
    margin-right: 40px;
  }

  .ngs-trusted--fade-edges .ngs-trusted__strip::before,
  .ngs-trusted--fade-edges .ngs-trusted__strip::after {
    width: 60px;
  }
}


/* ==========================================================================
   5. Latest Episode
   ========================================================================== */

.ngs-latest-ep {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  background: var(--ngs-bg);
}

.ngs-latest-ep__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ngs-latest-ep__header {
  margin-bottom: var(--ngs-space-2xl);
}

.ngs-latest-ep__card {
  display: flex;
  gap: var(--ngs-space-2xl);
  background: var(--ngs-glass-bg);
  border: 1px solid var(--ngs-glass-border);
  border-left: 3px solid var(--ngs-gold);
  border-radius: var(--ngs-radius);
  overflow: hidden;
  transition: var(--ngs-transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ngs-latest-ep__card:hover {
  transform: translateY(-4px);
  border-left-color: var(--ngs-gold-light);
  box-shadow: var(--ngs-shadow-gold);
}

/* Thumbnail */
.ngs-latest-ep__thumb {
  position: relative;
  flex-shrink: 0;
  width: 45%;
  min-height: 400px;
  overflow: hidden;
}

.ngs-latest-ep__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ngs-latest-ep__card:hover .ngs-latest-ep__thumb-img {
  transform: scale(1.05);
}

.ngs-latest-ep__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ngs-latest-ep__card:hover .ngs-latest-ep__thumb-overlay {
  opacity: 1;
}

.ngs-latest-ep__ep-badge {
  position: absolute;
  top: var(--ngs-space-md);
  left: var(--ngs-space-md);
  background: var(--ngs-gold);
  color: var(--ngs-bg);
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--ngs-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ngs-latest-ep__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--ngs-transition);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.ngs-latest-ep__card:hover .ngs-latest-ep__play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.ngs-latest-ep__play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--ngs-bg);
  margin-left: 3px;
}

/* Content */
.ngs-latest-ep__content {
  flex: 1;
  padding: var(--ngs-space-2xl) var(--ngs-space-2xl) var(--ngs-space-2xl) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ngs-latest-ep__label {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ngs-gold);
  margin-bottom: var(--ngs-space-md);
}

.ngs-latest-ep__guest-name {
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ngs-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--ngs-space-xs);
}

.ngs-latest-ep__guest-title {
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  color: var(--ngs-text-muted);
  font-style: italic;
  margin-bottom: var(--ngs-space-md);
}

.ngs-latest-ep__title {
  font-family: var(--ngs-font-h);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ngs-white);
  line-height: 1.2;
  margin-bottom: var(--ngs-space-md);
}

.ngs-latest-ep__summary {
  font-family: var(--ngs-font-b);
  font-size: 1rem;
  color: var(--ngs-text-muted);
  line-height: 1.7;
  margin-bottom: var(--ngs-space-xl);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ngs-latest-ep__meta {
  display: flex;
  align-items: center;
  gap: var(--ngs-space-md);
  margin-bottom: var(--ngs-space-xl);
  font-size: 0.8125rem;
  color: var(--ngs-text-dim);
}

.ngs-latest-ep__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--ngs-space-xs);
}

.ngs-latest-ep__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ngs-text-dim);
}

/* Actions */
.ngs-latest-ep__actions {
  display: flex;
  align-items: center;
  gap: var(--ngs-space-md);
  flex-wrap: wrap;
}

/* Latest Episode Responsive */
@media (max-width: 768px) {
  .ngs-latest-ep__card {
    flex-direction: column;
    border-left: none;
    border-top: 3px solid var(--ngs-gold);
  }

  .ngs-latest-ep__thumb {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16/9;
  }

  .ngs-latest-ep__thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ngs-latest-ep__content {
    padding: var(--ngs-space-lg);
  }

  .ngs-latest-ep__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================================
   6. Recent Episodes Grid
   ========================================================================== */

.ngs-recent-eps {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  background: var(--ngs-surface);
}

.ngs-recent-eps__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ngs-recent-eps__header {
  text-align: center;
  margin-bottom: var(--ngs-space-3xl);
}

.ngs-recent-eps__header .ngs-text {
  max-width: 600px;
  margin: var(--ngs-space-md) auto 0;
}

/* Grid */
.ngs-recent-eps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ngs-space-xl);
}

/* Episode Card */
.ngs-recent-eps__card {
  background: var(--ngs-glass-bg);
  border: 1px solid var(--ngs-glass-border);
  border-radius: var(--ngs-radius);
  overflow: hidden;
  transition: var(--ngs-transition);
  cursor: pointer;
}

.ngs-recent-eps__card:hover {
  transform: translateY(-8px);
  border-color: var(--ngs-gold-border);
  box-shadow: var(--ngs-shadow-gold);
}

.ngs-recent-eps__card:nth-child(1) { animation-delay: 0s; }
.ngs-recent-eps__card:nth-child(2) { animation-delay: 0.1s; }
.ngs-recent-eps__card:nth-child(3) { animation-delay: 0.2s; }
.ngs-recent-eps__card:nth-child(4) { animation-delay: 0.3s; }
.ngs-recent-eps__card:nth-child(5) { animation-delay: 0.4s; }
.ngs-recent-eps__card:nth-child(6) { animation-delay: 0.5s; }

/* Card Thumbnail */
.ngs-recent-eps__card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ngs-recent-eps__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ngs-recent-eps__card:hover .ngs-recent-eps__card-img {
  transform: scale(1.08);
}

.ngs-recent-eps__card-ep {
  position: absolute;
  top: var(--ngs-space-sm);
  left: var(--ngs-space-sm);
  background: var(--ngs-gold);
  color: var(--ngs-bg);
  font-family: var(--ngs-font-b);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--ngs-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ngs-recent-eps__card-duration {
  position: absolute;
  bottom: var(--ngs-space-sm);
  right: var(--ngs-space-sm);
  background: rgba(10, 10, 10, 0.8);
  color: var(--ngs-white);
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Card Body */
.ngs-recent-eps__card-body {
  padding: var(--ngs-space-lg);
}

.ngs-recent-eps__card-guest {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ngs-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--ngs-space-sm);
}

.ngs-recent-eps__card-title {
  font-family: var(--ngs-font-h);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ngs-white);
  line-height: 1.3;
  margin-bottom: var(--ngs-space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ngs-recent-eps__card-summary {
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  color: var(--ngs-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--ngs-space-md);
}

.ngs-recent-eps__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--ngs-space-md);
  border-top: 1px solid var(--ngs-glass-border);
}

.ngs-recent-eps__card-date {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  color: var(--ngs-text-dim);
}

.ngs-recent-eps__card-link {
  font-family: var(--ngs-font-b);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ngs-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--ngs-transition-fast);
}

.ngs-recent-eps__card-link:hover {
  color: var(--ngs-gold-light);
  gap: 8px;
}

/* View All */
.ngs-recent-eps__footer {
  text-align: center;
  margin-top: var(--ngs-space-2xl);
}

/* Recent Episodes Responsive */
@media (max-width: 1024px) {
  .ngs-recent-eps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ngs-recent-eps__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ==========================================================================
   7. Topics
   ========================================================================== */

/* ── Topics: Infinite Marquee ──────────────────────── */
.ngs-topics {
  padding: var(--ngs-space-2xl) 0;
  overflow: hidden;
}

.ngs-topics__heading {
  text-align: center;
  margin-bottom: var(--ngs-space-xl);
}

.ngs-topics__marquee {
  display: flex;
  width: max-content;
  animation: ngs-marquee var(--topics-speed, 30s) linear infinite;
  animation-direction: var(--topics-direction, normal);
}

.ngs-topics--pause-hover:hover .ngs-topics__marquee {
  animation-play-state: paused;
}

@keyframes ngs-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ngs-topics__track {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding: 0 10px;
}

/* Topic Pill */
.ngs-topics__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ngs-topics__pill:hover {
  background: rgba(212,168,67,0.15);
  border-color: #D4A843;
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}

.ngs-topics__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D4A843;
  flex-shrink: 0;
  font-size: 18px;
}

.ngs-topics__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ngs-topics__label {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.ngs-topics__pill:hover .ngs-topics__label {
  color: #fff;
}


/* ==========================================================================
   8. Top Guests — Split Layout (Carousel Left + Content Right)
   ========================================================================== */

.ngs-guests {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  overflow: hidden;
}

.ngs-guests__split {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
  overflow: hidden;
}

/* Left — Carousel */
.ngs-guests__left {
  position: relative;
  min-width: 0;
}

.ngs-guests__carousel {
  position: relative;
  width: 100%;
}

.ngs-guests__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.ngs-guests__track {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ngs-guests__card {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border-radius: 0;
}

.ngs-guests__img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s ease;
  z-index: 1;
}

.ngs-guests__card:hover .ngs-guests__img {
  transform: scale(1.05);
}

.ngs-guests__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  z-index: 3;
}

.ngs-guests__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(212,175,55,0.9);
  color: #000;
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ngs-guests__name {
  font-family: var(--ngs-font-h, 'Playfair Display', serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.ngs-guests__role {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Navigation: Arrows + Dots row */
.ngs-guests__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.ngs-guests__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  flex-shrink: 0;
}

.ngs-guests__arrow:hover {
  background: #D4A843;
  border-color: #D4A843;
  color: #000;
}

.ngs-guests__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ngs-guests__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ngs-guests__dot:hover {
  background: rgba(255,255,255,0.5);
}

.ngs-guests__dot--active {
  background: #D4A843;
  width: 28px;
  border-radius: 5px;
}

/* Right — Content */
.ngs-guests__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
  min-width: 0;
  overflow-wrap: break-word;
}

.ngs-guests__title {
  font-family: var(--ngs-font-h, 'Playfair Display', serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 24px;
}

.ngs-guests__desc {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

/* Guests Responsive */
@media (max-width: 1024px) {
  .ngs-guests__split {
    grid-template-columns: 45% 1fr;
    gap: 32px;
  }

  .ngs-guests__title {
    font-size: 1.6rem;
  }

  .ngs-guests__card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .ngs-guests__split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ngs-guests__right {
    text-align: center;
    order: -1;
    padding-top: 0;
  }

  .ngs-guests__card {
    height: 300px;
  }

  .ngs-guests__title {
    font-size: 1.4rem;
  }
}


/* ==========================================================================
   9. CTA Section
   ========================================================================== */

.ngs-cta {
  position: relative;
  padding: var(--ngs-space-5xl) var(--ngs-space-lg);
  background: var(--ngs-bg);
  overflow: hidden;
  text-align: center;
}

.ngs-cta__bg {
  position: absolute;
  inset: 0;
  z-index: var(--ngs-z-canvas);
}

.ngs-cta__bg-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.ngs-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  pointer-events: none;
}

.ngs-cta__inner {
  position: relative;
  z-index: var(--ngs-z-content);
  max-width: 800px;
  margin: 0 auto;
}

.ngs-cta .ngs-divider {
  margin-bottom: var(--ngs-space-xl);
}

.ngs-cta__heading {
  font-family: var(--ngs-font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ngs-white);
  line-height: 1.15;
  margin-bottom: var(--ngs-space-lg);
}

.ngs-cta__description {
  font-family: var(--ngs-font-b);
  font-size: 1.125rem;
  color: var(--ngs-text-muted);
  line-height: 1.7;
  margin-bottom: var(--ngs-space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ngs-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ngs-space-md);
  flex-wrap: wrap;
}

/* CTA with Background Image */
.ngs-cta--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ngs-cta--image .ngs-cta__bg-overlay {
  background: rgba(10, 10, 10, 0.85);
}

/* CTA Responsive */
@media (max-width: 768px) {
  .ngs-cta {
    padding: var(--ngs-space-4xl) var(--ngs-space-md);
  }

  .ngs-cta__actions {
    flex-direction: column;
  }

  .ngs-cta__actions .ngs-btn {
    width: 100%;
    max-width: 300px;
  }
}


/* ==========================================================================
   10. Subscribe Platforms
   ========================================================================== */

.ngs-subscribe {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  background: var(--ngs-surface);
}

.ngs-subscribe__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ngs-subscribe__header {
  text-align: center;
  margin-bottom: var(--ngs-space-3xl);
}

.ngs-subscribe__header .ngs-text {
  max-width: 500px;
  margin: var(--ngs-space-md) auto 0;
}

.ngs-subscribe__heading {
  text-align: center;
  margin-bottom: var(--ngs-space-2xl);
}

/* Platform Grid */
.ngs-subscribe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ngs-space-xl);
  max-width: 900px;
  margin: 0 auto;
}

/* Platform Card */
.ngs-subscribe__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--ngs-space-2xl) var(--ngs-space-xl);
  background: var(--ngs-glass-bg);
  border: 1px solid var(--ngs-glass-border);
  border-radius: var(--ngs-radius);
  transition: var(--ngs-transition);
  cursor: pointer;
  text-align: center;
}

.ngs-subscribe__card:hover {
  border-color: var(--ngs-gold-border);
  transform: translateY(-6px);
  box-shadow: var(--ngs-shadow-gold);
}

.ngs-subscribe__card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--ngs-space-lg);
  color: var(--ngs-white);
  transition: var(--ngs-transition);
}

.ngs-subscribe__card:hover .ngs-subscribe__card-icon {
  color: var(--ngs-gold);
  transform: scale(1.1);
}

.ngs-subscribe__card-icon img,
.ngs-subscribe__card-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ngs-subscribe__card-name {
  font-family: var(--ngs-font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ngs-white);
  margin-bottom: var(--ngs-space-xs);
}

.ngs-subscribe__card-desc {
  font-family: var(--ngs-font-b);
  font-size: 0.8125rem;
  color: var(--ngs-text-dim);
}

/* Subscribe Responsive */
@media (max-width: 768px) {
  .ngs-subscribe__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .ngs-subscribe__card {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--ngs-space-lg);
    padding: var(--ngs-space-lg);
    text-align: left;
  }

  .ngs-subscribe__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ngs-subscribe__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   11. Newsletter
   ========================================================================== */

.ngs-newsletter {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
  background: var(--ngs-bg);
  display: flex;
  justify-content: center;
}

.ngs-newsletter__inner {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.ngs-newsletter__card {
  background: var(--ngs-glass-bg);
  border: 1px solid var(--ngs-gold-border);
  border-radius: var(--ngs-radius-lg);
  padding: var(--ngs-space-3xl) var(--ngs-space-2xl);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.ngs-newsletter__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ngs-gold), transparent);
}

.ngs-newsletter__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--ngs-space-lg);
  color: var(--ngs-gold);
}

.ngs-newsletter__icon svg {
  width: 100%;
  height: 100%;
}

.ngs-newsletter__heading {
  font-family: var(--ngs-font-h);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ngs-white);
  margin-bottom: var(--ngs-space-lg);
}

.ngs-newsletter__description {
  font-family: var(--ngs-font-b);
  font-size: 1rem;
  color: var(--ngs-text-muted);
  line-height: 1.7;
  margin-bottom: var(--ngs-space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Newsletter Form - Inline */
.ngs-newsletter__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.ngs-newsletter__input-wrapper {
  flex: 1;
  position: relative;
}

.ngs-newsletter__input {
  width: 100%;
  height: 52px;
  padding: 0 var(--ngs-space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ngs-glass-border);
  border-radius: var(--ngs-radius-pill);
  color: var(--ngs-white);
  font-family: var(--ngs-font-b);
  font-size: 0.9375rem;
  outline: none;
  transition: var(--ngs-transition);
}

.ngs-newsletter__input::placeholder {
  color: var(--ngs-text-dim);
}

.ngs-newsletter__input:focus {
  border-color: var(--ngs-gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.ngs-newsletter__submit {
  height: 52px;
  margin-top: 8px;
  padding: 0 var(--ngs-space-xl);
  background: linear-gradient(135deg, var(--ngs-gold) 0%, var(--ngs-gold-dark) 100%);
  color: var(--ngs-bg);
  font-family: var(--ngs-font-b);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--ngs-radius-pill);
  cursor: pointer;
  transition: var(--ngs-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.ngs-newsletter__submit:hover {
  background: linear-gradient(135deg, var(--ngs-gold-light) 0%, var(--ngs-gold) 100%);
  box-shadow: var(--ngs-glow-gold);
  transform: translateY(-1px);
}

.ngs-newsletter__submit:active {
  transform: translateY(0);
}

/* Newsletter Form - Stacked */
.ngs-newsletter__form--stacked {
  flex-direction: column;
  align-items: center;
  gap: 24px !important;
}

.ngs-newsletter__form--stacked .ngs-newsletter__input-wrapper {
  width: 100%;
}

.ngs-newsletter__form--stacked .ngs-newsletter__submit {
  min-width: 200px;
}

/* Loading State */
.ngs-newsletter__submit--loading {
  pointer-events: none;
  opacity: 0.8;
}

.ngs-newsletter__submit--loading .ngs-newsletter__submit-text {
  visibility: hidden;
}

.ngs-newsletter__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10, 10, 10, 0.3);
  border-top-color: var(--ngs-bg);
  border-radius: 50%;
  animation: ngs-spin 0.8s linear infinite;
  display: none;
}

.ngs-newsletter__submit--loading .ngs-newsletter__spinner {
  display: block;
}

/* Success State */
.ngs-newsletter__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--ngs-space-sm);
  padding: var(--ngs-space-md);
  color: #4ADE80;
  font-family: var(--ngs-font-b);
  font-size: 0.9375rem;
  font-weight: 500;
}

.ngs-newsletter__success--visible {
  display: flex;
}

.ngs-newsletter__success-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Error State */
.ngs-newsletter__error {
  display: none;
  padding: var(--ngs-space-sm) 0;
  color: #F87171;
  font-family: var(--ngs-font-b);
  font-size: 0.8125rem;
  text-align: center;
}

.ngs-newsletter__error--visible {
  display: block;
}

/* Privacy */
.ngs-newsletter__privacy {
  font-family: var(--ngs-font-b);
  font-size: 0.75rem;
  color: var(--ngs-text-dim);
  margin-top: var(--ngs-space-md);
}

.ngs-newsletter__privacy a {
  color: var(--ngs-gold);
  text-decoration: underline;
}

.ngs-newsletter__privacy a:hover {
  color: var(--ngs-gold-light);
}

/* Newsletter Responsive */
@media (max-width: 768px) {
  .ngs-newsletter__card {
    padding: var(--ngs-space-2xl) var(--ngs-space-lg);
  }

  .ngs-newsletter__form {
    flex-direction: column;
  }

  .ngs-newsletter__submit {
    width: 100%;
  }
}


/* ==========================================================================
   12. Contact Form
   ========================================================================== */

.ngs-contact {
  padding: var(--ngs-space-4xl) var(--ngs-space-lg);
}

.ngs-contact__inner {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ngs-contact__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A843, transparent);
}

.ngs-contact__heading {
  font-family: var(--ngs-font-h, 'Playfair Display', serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.ngs-contact__desc {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ngs-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ngs-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ngs-contact__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.ngs-contact__input::placeholder {
  color: rgba(255,255,255,0.35);
}

.ngs-contact__input:focus {
  border-color: #D4A843;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.ngs-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.ngs-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #D4A843, #b8922e);
  color: #000;
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ngs-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}

.ngs-contact__success,
.ngs-contact__error {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}

.ngs-contact__success--visible {
  display: block;
  background: rgba(76,175,80,0.15);
  color: #81c784;
  border: 1px solid rgba(76,175,80,0.3);
}

.ngs-contact__error--visible {
  display: block;
  background: rgba(244,67,54,0.15);
  color: #ef9a9a;
  border: 1px solid rgba(244,67,54,0.3);
}

@media (max-width: 640px) {
  .ngs-contact__inner {
    padding: 32px 20px;
  }

  .ngs-contact__row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   13. Footer
   ========================================================================== */

/* ── Modern Footer ──────────────────────────────────────── */
.ngs-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(212,168,67,0.15);
  padding: 80px 24px 0;
  position: relative;
}

.ngs-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A843, transparent);
}

.ngs-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding-bottom: 60px;
}

/* Push Explore/Contact/Listen columns to the right */
.ngs-footer__brand {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  min-width: 250px;
}

/* Brand Column */

.ngs-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.ngs-footer__logo img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.ngs-footer__logo-text {
  font-family: var(--ngs-font-h, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.ngs-footer__tagline {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Social Icons */
.ngs-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ngs-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.ngs-footer__social a:hover {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-2px);
}

.ngs-footer__social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
  transition: fill 0.3s ease;
}

.ngs-footer__social a:hover svg {
  fill: #D4A843;
}

/* Column Titles */
.ngs-footer__col-title {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4A843;
  margin-bottom: 20px;
}

/* Links */
.ngs-footer__links,
.ngs-footer__contact,
.ngs-footer__listen {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ngs-footer__link {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.ngs-footer__link:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact Items */
.ngs-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 8px;
}

.ngs-footer__contact-item:hover {
  color: #D4A843;
}

.ngs-footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: #D4A843;
  flex-shrink: 0;
}

/* Bottom Bar */
.ngs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.ngs-footer__copyright {
  font-family: var(--ngs-font-b, 'Inter', sans-serif);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.ngs-footer__back-top {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: #D4A843;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ngs-footer__back-top:hover {
  background: #D4A843;
  color: #000;
  transform: translateY(-3px);
}

.ngs-footer__back-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .ngs-footer__inner {
    flex-wrap: wrap;
    gap: 40px;
  }

  .ngs-footer__brand {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .ngs-footer {
    padding: 40px 20px 0;
  }

  .ngs-footer__inner {
    flex-direction: column;
    gap: 36px;
  }

  .ngs-footer__brand {
    text-align: center;
    align-items: center;
    margin-right: 0;
  }

  .ngs-footer__tagline {
    max-width: 100%;
  }

  .ngs-footer__social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ngs-footer__links,
  .ngs-footer__contact,
  .ngs-footer__listen {
    align-items: center;
    text-align: center;
  }

  .ngs-footer__col-title {
    text-align: center;
  }

  .ngs-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ==========================================================================
   GLOBAL TABLET & MOBILE OVERRIDES
   ========================================================================== */

/* ── Tablet (769px – 1024px) ──────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Reduce all section padding */
  .ngs-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Hero — keep full height, stacked layout on tablet */
  .ngs-hero {
    min-height: 90vh;
  }

  .ngs-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .ngs-hero__tagline {
    font-size: 1rem;
  }

  /* Latest Episode */
  .ngs-latest-ep__card {
    flex-direction: column;
    border-left: none;
    border-top: 3px solid var(--ngs-gold, #D4A843);
  }

  .ngs-latest-ep__thumb {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16/9;
  }

  .ngs-latest-ep__thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Recent Episodes */
  .ngs-recent-eps__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  /* Top Guests */
  .ngs-guests__split {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .ngs-guests__right {
    text-align: center;
    order: -1;
    padding-top: 0;
  }

  .ngs-guests__card {
    height: 400px;
  }

  /* CTA */
  .ngs-cta__inner {
    padding: 48px 32px;
  }

  /* Subscribe */
  .ngs-subscribe__grid {
    gap: 16px;
  }

  .ngs-subscribe__card {
    padding: 24px 16px;
  }

  /* Newsletter */
  .ngs-newsletter__card {
    padding: 40px 28px;
  }

  /* Contact Form */
  .ngs-contact__inner {
    padding: 40px 28px;
  }
}

/* ── Mobile (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {

  /* Global spacing reduction */
  .ngs-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Headings */
  .ngs-heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }

  /* Hero — keep full height so content is visible on mobile */
  .ngs-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .ngs-hero__mc-strip {
    gap: 12px;
    padding: 0 8px;
  }

  /* Podcast Intro */
  .ngs-intro__split {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .ngs-intro__image {
    max-height: 300px;
  }

  /* Latest Episode */
  .ngs-latest-ep__title {
    font-size: 1.2rem;
  }

  .ngs-latest-ep__summary {
    font-size: 0.85rem;
  }

  /* Recent Episodes */
  .ngs-recent-eps {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ngs-recent-eps__card-title {
    font-size: 0.95rem;
  }

  /* Top Guests */
  .ngs-guests {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ngs-guests__split {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .ngs-guests__right {
    text-align: center;
    order: -1;
    padding-top: 0;
  }

  .ngs-guests__title {
    font-size: 1.3rem !important;
  }

  .ngs-guests__desc {
    font-size: 0.9rem;
  }

  .ngs-guests__nav {
    gap: 10px;
    margin-top: 14px;
  }

  .ngs-guests__arrow {
    width: 38px;
    height: 38px;
  }

  /* CTA */
  .ngs-cta__heading {
    font-size: 1.4rem !important;
  }

  .ngs-cta__inner {
    padding: 36px 20px;
  }

  /* Subscribe */
  .ngs-subscribe__grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .ngs-subscribe__heading {
    font-size: 1.2rem;
  }

  /* Newsletter */
  .ngs-newsletter__card {
    padding: 32px 20px;
  }

  .ngs-newsletter__heading {
    font-size: 1.3rem !important;
  }

  /* Contact Form */
  .ngs-contact__inner {
    padding: 28px 16px;
  }

  .ngs-contact__row {
    grid-template-columns: 1fr;
  }

  .ngs-contact__heading {
    font-size: 1.3rem !important;
  }
}

/* ── Small phones (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {

  .ngs-hero__title {
    font-size: 1.5rem !important;
  }

  .ngs-hero__tagline {
    font-size: 0.85rem;
  }

  .ngs-hero__desc {
    font-size: 0.8rem;
  }

  .ngs-hero__mc {
    width: 180px;
    padding: 12px;
  }

  .ngs-hero__mc-quote {
    font-size: 0.75rem;
  }

  .ngs-guests__card {
    height: 260px !important;
  }

  .ngs-latest-ep__content {
    padding: 16px !important;
  }

  .ngs-subscribe__card {
    padding: 20px 12px;
  }

  .ngs-subscribe__card-icon {
    width: 48px;
    height: 48px;
  }
}


/* ==========================================================================
   14. Animations & Keyframes
   ========================================================================== */

/* Orb Float Animations */
@keyframes ngs-float-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -60px) scale(1.05);
  }
  50% {
    transform: translate(-20px, -30px) scale(0.95);
  }
  75% {
    transform: translate(30px, 20px) scale(1.02);
  }
}

@keyframes ngs-float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50px, 30px) scale(1.03);
  }
  50% {
    transform: translate(30px, 60px) scale(0.97);
  }
  75% {
    transform: translate(-20px, -40px) scale(1.05);
  }
}

@keyframes ngs-float-3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    transform: translate(calc(-50% + 30px), calc(-50% - 40px)) scale(1.04);
  }
  66% {
    transform: translate(calc(-50% - 40px), calc(-50% + 20px)) scale(0.96);
  }
}

/* Bob Animation (Scroll Indicator) */
@keyframes ngs-bob {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Pulse */
@keyframes ngs-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* Badge Float (Yoyo) */
@keyframes ngs-badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Hero Divider Expand */
@keyframes ngs-divider-expand {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}

/* Spin (Loading) */
@keyframes ngs-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Fade In Up */
@keyframes ngs-fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In */
@keyframes ngs-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Fade In Down */
@keyframes ngs-fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale In */
@keyframes ngs-scale-in {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide In Left */
@keyframes ngs-slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In Right */
@keyframes ngs-slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Gold Shimmer */
@keyframes ngs-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.ngs-shimmer-text {
  background: linear-gradient(
    90deg,
    var(--ngs-gold-dark) 0%,
    var(--ngs-gold-light) 25%,
    var(--ngs-gold) 50%,
    var(--ngs-gold-light) 75%,
    var(--ngs-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ngs-shimmer 3s linear infinite;
}

/* Morph (blob shape) */
@keyframes ngs-morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%;
  }
  75% {
    border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%;
  }
}

/* Carousel Auto-Scroll */
@keyframes ngs-carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Glow Pulse */
@keyframes ngs-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.25);
  }
}

/* Card Entrance Animations (prepared for scroll trigger via JS) */
.ngs-anim-ready {
  opacity: 1;
  transform: translateY(0);
}

.ngs-anim--fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ngs-anim--fade-up.ngs-anim-ready {
  opacity: 1;
  transform: translateY(0);
}

.ngs-anim--fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ngs-anim--fade-in.ngs-anim-ready {
  opacity: 1;
}

.ngs-anim--scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ngs-anim--scale-in.ngs-anim-ready {
  opacity: 1;
  transform: scale(1);
}

.ngs-anim--slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ngs-anim--slide-left.ngs-anim-ready {
  opacity: 1;
  transform: translateX(0);
}

.ngs-anim--slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ngs-anim--slide-right.ngs-anim-ready {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for grid items */
.ngs-anim-stagger > *:nth-child(1) { transition-delay: 0s; }
.ngs-anim-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.ngs-anim-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.ngs-anim-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.ngs-anim-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.ngs-anim-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.ngs-anim-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.ngs-anim-stagger > *:nth-child(8) { transition-delay: 0.7s; }
.ngs-anim-stagger > *:nth-child(9) { transition-delay: 0.8s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ngs-hero__orb {
    animation: none !important;
  }

  .ngs-hero__badge {
    animation: none !important;
  }

  .ngs-hero__scroll {
    animation: none !important;
  }

  .ngs-hero__divider {
    animation: none !important;
    width: 120px;
  }

  .ngs-shimmer-text {
    animation: none !important;
    -webkit-text-fill-color: var(--ngs-gold);
  }

  .ngs-guests__track--auto {
    animation: none !important;
  }

  .ngs-anim--fade-up,
  .ngs-anim--fade-in,
  .ngs-anim--scale-in,
  .ngs-anim--slide-left,
  .ngs-anim--slide-right {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ==========================================================================
   14. Canvas Styles
   ========================================================================== */

.ngs-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--ngs-z-canvas);
  pointer-events: none;
}

.ngs-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--ngs-z-canvas);
  pointer-events: none;
}

.ngs-canvas-container {
  position: absolute;
  inset: 0;
  z-index: var(--ngs-z-canvas);
  pointer-events: none;
  overflow: hidden;
}


/* ==========================================================================
   15. Utility Classes
   ========================================================================== */

/* Screen Reader Only */
.ngs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hidden */
.ngs-hidden {
  display: none !important;
}

/* Visually Hidden (but can receive focus) */
.ngs-sr-only--focusable:focus,
.ngs-sr-only--focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: inherit;
}

/* Body Scroll Lock */
body.ngs-offcanvas-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Text Alignment */
.ngs-text-center {
  text-align: center;
}

.ngs-text-left {
  text-align: left;
}

.ngs-text-right {
  text-align: right;
}

/* Flex Utilities */
.ngs-flex {
  display: flex;
}

.ngs-flex--center {
  align-items: center;
  justify-content: center;
}

.ngs-flex--between {
  align-items: center;
  justify-content: space-between;
}

.ngs-flex--column {
  flex-direction: column;
}

.ngs-flex--wrap {
  flex-wrap: wrap;
}

.ngs-flex--gap-sm {
  gap: var(--ngs-space-sm);
}

.ngs-flex--gap-md {
  gap: var(--ngs-space-md);
}

.ngs-flex--gap-lg {
  gap: var(--ngs-space-lg);
}

/* Spacing Utilities */
.ngs-mt-0 { margin-top: 0; }
.ngs-mt-sm { margin-top: var(--ngs-space-sm); }
.ngs-mt-md { margin-top: var(--ngs-space-md); }
.ngs-mt-lg { margin-top: var(--ngs-space-lg); }
.ngs-mt-xl { margin-top: var(--ngs-space-xl); }
.ngs-mt-2xl { margin-top: var(--ngs-space-2xl); }

.ngs-mb-0 { margin-bottom: 0; }
.ngs-mb-sm { margin-bottom: var(--ngs-space-sm); }
.ngs-mb-md { margin-bottom: var(--ngs-space-md); }
.ngs-mb-lg { margin-bottom: var(--ngs-space-lg); }
.ngs-mb-xl { margin-bottom: var(--ngs-space-xl); }
.ngs-mb-2xl { margin-bottom: var(--ngs-space-2xl); }

/* Relative + Z-index */
.ngs-relative {
  position: relative;
}

.ngs-z-1 {
  z-index: 1;
}

.ngs-z-2 {
  z-index: 2;
}

.ngs-z-3 {
  z-index: 3;
}

/* Max Width Containers */
.ngs-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ngs-space-lg);
  padding-right: var(--ngs-space-lg);
}

.ngs-container--sm {
  max-width: 720px;
}

.ngs-container--md {
  max-width: 960px;
}

.ngs-container--lg {
  max-width: 1400px;
}

/* Overflow */
.ngs-overflow-hidden {
  overflow: hidden;
}

/* Border Radius */
.ngs-rounded {
  border-radius: var(--ngs-radius);
}

.ngs-rounded-lg {
  border-radius: var(--ngs-radius-lg);
}

.ngs-rounded-full {
  border-radius: 50%;
}

/* Image Cover */
.ngs-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Truncate */
.ngs-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ngs-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ngs-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Focus Visible for Accessibility */
.ngs-wrapper :focus-visible {
  outline: 2px solid var(--ngs-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Selection Color */
.ngs-wrapper ::selection {
  background: rgba(212, 168, 67, 0.3);
  color: var(--ngs-white);
}

.ngs-wrapper ::-moz-selection {
  background: rgba(212, 168, 67, 0.3);
  color: var(--ngs-white);
}

/* Scrollbar Styling (Webkit) */
.ngs-wrapper ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.ngs-wrapper ::-webkit-scrollbar-track {
  background: var(--ngs-bg);
}

.ngs-wrapper ::-webkit-scrollbar-thumb {
  background: var(--ngs-gold-border);
  border-radius: 3px;
}

.ngs-wrapper ::-webkit-scrollbar-thumb:hover {
  background: var(--ngs-gold);
}

/* Print Styles */
@media print {
  .ngs-header,
  .ngs-back-to-top,
  .ngs-offcanvas,
  .ngs-hero__orbs,
  .ngs-hero__badges,
  .ngs-hero__scroll,
  .ngs-particles-canvas,
  .ngs-network-canvas {
    display: none !important;
  }

  .ngs-wrapper {
    color: #000 !important;
    background: #fff !important;
  }

  .ngs-heading {
    color: #000 !important;
  }

  .ngs-btn {
    border: 1px solid #000 !important;
    color: #000 !important;
    background: transparent !important;
  }
}