/* =====================================================
   MOBILE — CREATORS PAGE
   Created by Prompt 05. Depends on mobile-global.css.
   ===================================================== */

@media (max-width: 768px) {

  /* ── SECTION 1: HERO ── */
  .creators-hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: url('/assets/images/mobile/mobile-creators-microphones.jpg');
    background-size: cover;
    background-position: center center;
  }

  .creators-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10, 6, 4, 0.3) 0%,
      rgba(10, 6, 4, 0.6) 60%,
      rgba(10, 6, 4, 0.95) 100%
    );
    z-index: 1;
  }

  .creators-hero__content,
  .creators-hero__phase {
    position: relative;
    z-index: 2;
  }

  .creators-hero__bg {
    opacity: 0;
  }

  .creators-hero__grain {
    display: none;
  }

  .creators-hero__phase {
    position: relative;
    opacity: 1 !important;
    inset: auto;
    padding: 0 20px 48px;
    width: 100%;
    background: linear-gradient(to top, rgba(10,6,4,0.92) 0%, rgba(10,6,4,0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .creators-hero__phase-line,
  .creators-hero__phase-tagline {
    display: none !important;
  }

  .creators-hero__phase-title {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1 !important;
  }

  .creators-hero__title {
    font-size: var(--mobile-hero-title);
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    margin-bottom: 12px;
  }

  .creators-hero__subtitle {
    font-size: 15px;
    color: var(--munk-sand);
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 20px;
  }

  .creators-hero__sub-tag {
    font-size: var(--mobile-micro);
    color: var(--munk-amber);
    opacity: 1 !important;
  }

  .creators-hero__scroll {
    display: none !important;
  }

  .creators-hero__vignette,
  .creators-hero__line {
    display: none;
  }

  /* ── SECTION 2: MANIFESTO ── */
  .creators-manifesto {
    height: auto !important;
    min-height: 50vh;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .creators-manifesto__grain,
  .creators-manifesto__vignette {
    display: none;
  }

  .creators-manifesto__pin {
    text-align: center;
  }

  .creators-manifesto__word {
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-manifesto__divider {
    transform: scaleX(1) !important;
  }

  .creators-manifesto__line-1,
  .creators-manifesto__line-2 {
    font-size: clamp(1.6rem, 5vw, 32px);
  }

  .creators-manifesto__sub {
    font-size: 15px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    line-height: 1.6;
  }

  /* ── SECTION 3: STATS ── */
  .creators-stats {
    height: auto !important;
    min-height: auto;
    padding: 48px 20px;
  }

  .creators-stats__grain { display: none; }

  .creators-stats__label {
    font-size: var(--mobile-micro);
    color: var(--munk-amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .creators-stats__col {
    text-align: center;
    padding: 28px 16px;
    background: rgba(26, 20, 16, 0.6);
    border: 1px solid rgba(82, 60, 31, 0.2);
    border-radius: var(--mobile-radius-md);
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-stats__number {
    font-size: clamp(28px, 7vw, 36px);
    color: var(--munk-amber);
    margin-bottom: 6px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-stats__caption {
    font-size: 11px;
    color: var(--munk-sand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .creators-stats__sweep {
    display: none;
  }

  /* ── SECTION 4: BENEFITS ── */
  .creators-benefits {
    height: auto !important;
    padding: 64px 20px;
  }

  .creators-benefits__grain { display: none; }

  .creators-benefits__label {
    font-size: var(--mobile-micro);
    color: var(--munk-amber);
    text-align: center;
    margin-bottom: 8px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-benefits__title {
    font-size: var(--mobile-section-title);
    text-align: center;
    margin-bottom: 32px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .creators-benefits__card {
    padding: var(--mobile-card-pad);
    background: rgba(26, 20, 16, 0.5);
    border: 1px solid rgba(82, 60, 31, 0.15);
    border-radius: var(--mobile-radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-benefits__icon {
    margin-bottom: 12px;
  }

  .creators-benefits__icon svg {
    width: 28px;
    height: 28px;
    color: var(--munk-amber);
  }

  .creators-benefits__card-title {
    font-size: 16px;
    margin-bottom: 6px;
    opacity: 1 !important;
  }

  .creators-benefits__card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--munk-sand);
    opacity: 1 !important;
  }

  /* ── SECTION 5: GALLERY ── */
  .creators-gallery {
    height: auto !important;
    padding: 64px 0;
  }

  .creators-gallery__grain { display: none; }

  .creators-gallery__header {
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .creators-gallery__chapter {
    font-size: var(--mobile-micro);
    color: var(--munk-amber);
    text-align: center;
    display: block;
    margin-bottom: 8px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-gallery__title {
    font-size: var(--mobile-section-title);
    text-align: center;
    margin-bottom: 8px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-gallery__subtitle {
    font-size: 14px;
    text-align: center;
    color: var(--munk-sand);
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-gallery__filmstrip { display: none !important; }
  .creators-gallery__progress { display: none !important; }

  .creators-gallery__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 8px;
    overflow: visible;
    width: auto;
    transform: none !important;
  }

  .creators-gallery__card {
    flex: none;
    border-radius: var(--mobile-radius-sm, 8px);
    overflow: hidden;
    position: relative;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-gallery__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    overflow: hidden;
  }

  .creators-gallery__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .creators-gallery__card-info {
    padding: 10px 12px;
    background: rgba(10, 6, 4, 0.8);
  }

  .creators-gallery__card-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .creators-gallery__card-niche {
    font-size: 11px;
    color: var(--munk-bark);
  }

  /* ── SECTION 6: SPOTLIGHT ── */
  .creators-spotlight {
    height: auto !important;
    padding: 64px 20px;
    min-height: auto;
  }

  .creators-spotlight__grain { display: none; }

  .creators-spotlight__split {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .creators-spotlight__photo-side {
    min-height: 360px;
    border-radius: var(--mobile-radius-lg);
    overflow: hidden;
    order: 1;
  }

  .creators-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none !important;
    transform: none !important;
  }

  .creators-spotlight__brackets { display: none; }
  .creators-spotlight__img-scanlines { display: none; }

  .creators-spotlight__quote-side {
    padding: 0;
    order: 2;
  }

  .creators-spotlight__quote-mark {
    font-size: 80px;
    color: var(--munk-amber);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 8px;
  }

  .creators-spotlight__quote p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--munk-cream);
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-spotlight__quote cite {
    font-size: 14px;
    display: block;
    margin-top: 12px;
    opacity: 1 !important;
  }

  .creators-spotlight__quote cite strong {
    display: block;
    color: var(--munk-cream);
  }

  .creators-spotlight__quote cite span {
    font-size: 12px;
    color: var(--munk-bark);
  }

  /* ── SECTION 7: APPLY FORM ── */
  .creators-apply {
    height: auto !important;
    padding: 64px 20px;
    min-height: auto;
    position: relative;
  }

  .creators-apply__grain { display: none; }
  .creators-apply__vignette { display: none; }

  .creators-apply__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
  }

  .creators-apply__inner {
    position: relative;
    z-index: 2;
  }

  .creators-apply__title {
    font-size: var(--mobile-section-title);
    text-align: center;
    margin-bottom: 8px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-apply__subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--munk-sand);
    margin-bottom: 32px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .creators-apply__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .creators-apply__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-apply__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--munk-cream);
  }

  .creators-apply__input,
  .creators-apply__textarea,
  .creators-apply__select,
  .creators-apply__field input,
  .creators-apply__field textarea,
  .creators-apply__field select {
    min-height: 52px;
    font-size: 16px; /* Prevents iOS zoom */
    padding: 14px 16px;
    background: rgba(26, 20, 16, 0.8);
    border: 1px solid rgba(82, 60, 31, 0.3);
    border-radius: var(--mobile-radius-sm, 8px);
    color: var(--munk-cream);
    width: 100%;
    -webkit-appearance: none;
  }

  .creators-apply__input:focus,
  .creators-apply__textarea:focus,
  .creators-apply__select:focus,
  .creators-apply__field input:focus,
  .creators-apply__field textarea:focus,
  .creators-apply__field select:focus {
    border-color: var(--munk-amber);
    outline: none;
  }

  .creators-apply__textarea,
  .creators-apply__field textarea {
    min-height: 120px;
    resize: vertical;
  }

  .creators-apply__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .creators-apply__checkbox,
  .creators-apply__checkboxes label {
    min-height: var(--mobile-touch-min);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
  }

  .creators-apply__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--munk-amber);
  }

  .creators-apply__submit {
    width: 100%;
    min-height: 52px;
    background: var(--munk-amber);
    color: var(--munk-void);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--mobile-radius-md);
    border: none;
    margin-top: 8px;
    opacity: 1 !important;
    transform: none !important;
    -webkit-tap-highlight-color: transparent;
  }

  .creators-apply__note {
    font-size: 13px;
    color: var(--munk-bark);
    text-align: center;
    margin-top: 8px;
  }

  /* ── SECTION 8: VOICES/TESTIMONIALS ── */
  .creators-voices {
    height: auto !important;
    padding: 64px 0;
    overflow: hidden;
  }

  .creators-voices__grain { display: none; }

  .creators-voices__title {
    font-size: var(--mobile-section-title);
    text-align: center;
    padding: 0 20px;
    margin-bottom: 32px;
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-voices__cards {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .creators-voices__cards::-webkit-scrollbar {
    display: none;
  }

  .creators-voices__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: var(--mobile-card-pad);
    background: rgba(26, 20, 16, 0.6);
    border: 1px solid rgba(82, 60, 31, 0.15);
    border-radius: var(--mobile-radius-md);
    opacity: 1 !important;
    transform: none !important;
  }

  .creators-voices__card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .creators-voices__card cite strong {
    font-size: 14px;
    display: block;
  }

  .creators-voices__card cite span {
    font-size: 12px;
    color: var(--munk-bark);
  }

  /* ── 480px REFINEMENTS ── */
  @media (max-width: 480px) {
    .creators-hero__phase {
      padding: 0 16px 40px;
    }

    .creators-stats__grid {
      gap: 12px;
    }

    .creators-gallery__cards {
      gap: 6px;
      padding: 0 6px;
    }

    .creators-spotlight__photo-side {
      min-height: 300px;
    }

    .creators-voices__card {
      flex: 0 0 260px;
    }

    .creators-apply__title {
      font-size: clamp(1.5rem, 6vw, 28px);
    }
  }

} /* end 768px */
